/* ============================================
   LOFT ALIZÉS SXM — Tropical Luxe Clair
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --sand: #F5F0E8;
  --sand-light: #FAF8F4;
  --deep-blue: #1B4B5A;
  --deep-blue-light: #2A6B7E;
  --gold: #C8A96E;
  --gold-light: #D4BC8A;
  --gold-dark: #A8894E;
  --turquoise: #2AABCC;
  --turquoise-dark: #1E8FA8;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --grey: #8A8A8A;
  --grey-light: #E8E4DE;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Trebuchet MS', sans-serif;

  --nav-height: 80px;
  --section-padding: 100px;
  --container-width: 1200px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--deep-blue);
  background-color: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

.text-center {
  text-align: center;
}

/* --- Decorative separator --- */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px auto;
  max-width: 300px;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.separator-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 1px;
}

.navbar.scrolled .nav-logo {
  color: var(--deep-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

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

.nav-links a:hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-links a {
  color: var(--deep-blue);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gold);
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all var(--transition);
}

.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.navbar.scrolled .lang-switch {
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

.navbar.scrolled .lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--deep-blue);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

/* Hero video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 2s ease;
}

.hero.loaded .hero-video-bg video {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 75, 90, 0.3) 0%,
    rgba(27, 75, 90, 0.5) 50%,
    rgba(27, 75, 90, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-pretitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.6s forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.2s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
  margin: 0 auto 8px;
}

.scroll-indicator span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

.scroll-indicator p {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-sand {
  background: var(--sand);
}

.section-white {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-text .section-subtitle {
  text-align: left;
}

.about-text .section-title::after {
  margin: 16px 0 0;
}

.about-text p {
  color: var(--deep-blue);
  opacity: 0.85;
  font-size: 1.05rem;
}

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.highlight-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ============================================
   LOFT SECTION
   ============================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.amenity-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.amenity-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

.loft-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 75, 90, 0);
  transition: background var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: rgba(27, 75, 90, 0.3);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-light);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  transform: scaleX(1);
  height: 4px;
  background: var(--gold);
}

.pricing-season {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.pricing-period {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1;
}

.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 400;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-details {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid var(--grey-light);
}

.pricing-details li {
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--deep-blue);
  opacity: 0.8;
}

.pricing-details li::before {
  content: '—';
  color: var(--gold);
  margin-right: 8px;
}

.pricing-info {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.pricing-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey);
}

.pricing-info-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Calendar */
.calendar-wrapper {
  margin-top: 60px;
  text-align: center;
}

.calendar-wrapper h3 {
  margin-bottom: 24px;
}

.calendar-wrapper iframe {
  border: none;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

/* ============================================
   SURROUNDINGS SECTION
   ============================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.activity-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.activity-card-icon {
  height: 60px;
  background: linear-gradient(135deg, var(--deep-blue), var(--turquoise));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.activity-card-body {
  padding: 24px;
}

.activity-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-blue);
}

.activity-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0;
}

.activity-card a {
  color: var(--turquoise);
  font-weight: 400;
  transition: color var(--transition);
}

.activity-card a:hover {
  color: var(--gold);
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.maps-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  background: var(--sand-light);
  color: var(--deep-blue);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

.partners {
  margin-top: 40px;
}

.partners h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partners-list a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  border: 1px solid var(--grey-light);
  border-radius: 20px;
  color: var(--deep-blue);
  transition: all var(--transition);
}

.partners-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .about-grid {
    gap: 40px;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --nav-height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    padding: 100px 40px 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-links a {
    color: var(--deep-blue);
    padding: 16px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--grey-light);
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .lang-switch {
    margin-top: 24px;
    color: var(--deep-blue);
    border-color: var(--deep-blue);
  }

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

  .about-image {
    order: -1;
  }

  .about-image::after {
    display: none;
  }

  .about-image img {
    height: 350px;
  }

  .about-highlights {
    justify-content: space-around;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .amenity-card {
    padding: 20px 16px;
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}
