/* ========== Reset & Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0f766e;       /* deep teal */
  --primary-dark: #0d5c56;
  --accent: #d4a017;        /* warm gold */
  --dark: #111827;
  --gray: #4b5563;
  --light: #f8fafc;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ========== Typography ========== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--gray);
  max-width: 520px;
  margin-inline: auto;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-room {
  width: 100%;
  background: var(--primary);
  color: white;
  margin-top: 1rem;
}

.btn-room:hover {
  background: var(--primary-dark);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.25rem;
}

.logo-motto {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #0f172a 100%);
  color: white;
  padding-top: 72px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/lounge.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 0;
}

.hero-tag {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========== About Strip ========== */
.about-strip {
  background: var(--light);
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
}

.about-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.about-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ========== Rooms ========== */
.rooms {
  padding: 5rem 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.06);
}

.room-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--primary);
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
}

.room-price span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

.room-body {
  padding: 1.5rem;
}

.room-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.room-body > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.room-features li {
  font-size: 0.8rem;
  background: #f0fdfa;
  color: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

/* ========== Lounge ========== */
.lounge {
  padding: 5rem 0;
  background: var(--light);
}

.lounge-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.lounge-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.lounge-content > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.lounge-features {
  margin-bottom: 2rem;
}

.lounge-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.lounge-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.lounge-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lounge-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ========== Outdoor ========== */
.outdoor {
  padding: 5rem 0;
}

.outdoor-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.outdoor-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.outdoor-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.outdoor-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.outdoor-content p {
  color: var(--gray);
}

/* ========== Gallery ========== */
.gallery {
  padding: 5rem 0;
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* ========== Contact ========== */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.contact-card a[href^="tel"] {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand .logo {
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-copy {
  font-size: 0.9rem;
}

/* ========== Floating WhatsApp ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background: #1da851;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lounge-grid,
  .outdoor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lounge-image img,
  .outdoor-image img {
    height: 300px;
  }

  .outdoor-grid {
    direction: rtl;
  }
  .outdoor-grid > * {
    direction: ltr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/* ========== Contact action buttons ========== */
.contact-card .btn {
  margin-left: auto;
  margin-right: auto;
}

.contact-card .btn + .btn {
  display: flex;
}
