/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette - Premium Alpine Mountain Vibe */
  --primary-color: #1b4332;       /* Deep Forest Green */
  --primary-light: #2d6a4f;       /* Medium Forest Green */
  --primary-dark: #081c15;        /* Darkest Green */
  --accent-color: #d4a373;        /* Warm Wood / Gold */
  --accent-hover: #b98a59;        /* Darker Accent */
  --bg-color: #faf9f6;            /* Warm Off-White / Alabaster */
  --bg-card: #ffffff;             /* Pure White for cards */
  --bg-dark-section: #14211a;     /* Very dark green-gray for footer/dark areas */
  --text-color: #2b2d42;          /* Slate Dark Grey for readability */
  --text-muted: #6c757d;          /* Soft grey for notes */
  --border-color: #e9ecef;        /* Soft borders */
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 15px 35px rgba(27, 67, 50, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.3;
}

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

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

/* ==========================================================================
   FLOATING LANGUAGE SWITCHER (TOP-LEFT CORNER)
   ========================================================================== */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 5px;
  z-index: 1001; /* Must sit above everything, including headers */
  background: rgba(255, 255, 255, 0.85);
  padding: 5px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.language-switcher:hover {
  transform: translateY(-2px);
}

.lang-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn svg {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: block;
  transition: transform var(--transition-fast);
}

.lang-btn:hover svg {
  transform: scale(1.15);
}

.lang-btn.active svg {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--primary-color), 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  z-index: 1000;
  transition: box-shadow var(--transition-normal), padding var(--transition-normal);
  padding: 15px 0;
}

.main-header.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo a {
  color: var(--primary-color);
}

.logo-bold {
  color: var(--primary-color);
}

.logo-sub {
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-color);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hamburger menu for mobile */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   SECTIONS & ROUTING
   ========================================================================== */
main {
  margin-top: 75px; /* Offset for fixed header */
}

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.page-section.active {
  display: block;
  animation: sectionFadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: left;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 20px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 40px;
}

.title-underline.center {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.btn-block {
  display: block;
  width: 100%;
}

/* ==========================================================================
   SECTION: HOME / INTRO
   ========================================================================== */
/* Hero Unit */
.hero {
  position: relative;
  height: calc(85vh - 75px);
  min-height: 480px;
  background: url('assets/gallery/807460895.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 28, 21, 0.75) 0%, rgba(27, 67, 50, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 35px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.8;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Welcome Grid */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.welcome-text p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.05rem;
}

.welcome-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 5px solid #ffffff;
}

/* Features Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 67, 50, 0.04);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 163, 115, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION: GALLERY
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 550;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item.hidden {
  display: none;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 67, 50, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

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

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  transform: scale(0.7);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

.img-desc {
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .img-desc {
  transform: translateY(0);
}

/* ==========================================================================
   SECTION: PRICING
   ========================================================================== */
.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.highlighted {
  border: 2px solid var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted::before {
  content: '★';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--primary-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pricing-tag {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--text-color);
}

/* Pricing Notes Block */
.pricing-notes-section {
  background-color: var(--bg-card);
  border-left: 4px solid var(--accent-color);
  padding: 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.pricing-notes-section h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.notes-list {
  list-style: none;
}

.notes-list li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.notes-list li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* ==========================================================================
   SECTION: CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info h3,
.contact-form-container h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  background-color: rgba(212, 163, 115, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-details strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item-details p,
.contact-item-details a {
  font-size: 1.05rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.contact-item-details a:hover {
  color: var(--accent-color);
}

.map-container {
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Contact Form styling */
.contact-form-container {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 67, 50, 0.02);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background-color: #d8f3dc;
  color: #1b4332;
  border: 1px solid #b7e4c7;
}

.form-status.error {
  display: block;
  background-color: #ffe3e3;
  color: #c92a2a;
  border: 1px solid #ffc9c9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--bg-dark-section);
  color: rgba(250, 249, 246, 0.7);
  padding: 30px 0;
  border-top: 2px solid var(--accent-color);
  font-size: 0.85rem;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ==========================================================================
   LIGHTBOX POPUP
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 28, 21, 0.96);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 2002;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 67, 50, 0.4);
  color: #ffffff;
  border: none;
  font-size: 2rem;
  padding: 20px 15px;
  cursor: pointer;
  opacity: 0.7;
  transition: all var(--transition-fast);
  z-index: 2002;
  border-radius: var(--radius-sm);
}

.lightbox-nav:hover {
  opacity: 1;
  background: var(--primary-color);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2001;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 4px solid #ffffff;
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  background: rgba(8, 28, 21, 0.6);
  padding: 8px 20px;
  border-radius: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet View */
@media (max-width: 992px) {

  
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .welcome-image {
    order: -1; /* Image first on mobile/tablet */
    max-width: 500px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 40px;
    gap: 25px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .logo {
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
    font-size: 1.2rem;
  }
  
  .language-switcher {
    top: 12px;
    right: 60px;
    left: auto;
    padding: 3px;
  }
  
  .lang-btn {
    padding: 4px;
  }
  
  .main-header {
    padding: 12px 0;
  }
  
  .header-container {
    /* Push navigation toggle to the right */
    justify-content: flex-end;
    gap: 20px;
  }
  
  /* Mobile menu styles */
  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }
  
  /* Hamburger turning to X */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
    z-index: 1001;
    gap: 20px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.05rem;
    padding: 10px 0;
  }
  
  main {
    margin-top: 60px;
  }
  
  .hero {
    height: calc(75vh - 60px);
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .lightbox-nav {
    padding: 15px 10px;
    font-size: 1.5rem;
  }
  
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}

@media (max-width: 480px) {
  .logo {
    padding-left: 0;
    margin-right: auto;
  }
  
  /* On very small devices, floating language switcher goes above the header log line or sits nicely */
  .language-switcher {
    position: absolute;
    top: 5px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .language-switcher:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  
  .logo {
    margin-top: 30px; /* Push logo down to avoid overlap with switcher */
  }
  
  .mobile-menu-toggle {
    margin-top: 30px; /* Align burger menu with logo */
  }
  
  main {
    margin-top: 100px;
  }
  
  .hero {
    height: 70vh;
  }
}
