/* ========================================
   DESIGN SYSTEM — Działka Jędrzeja
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Earthy, warm palette */
  --color-bg-dark: #0f1209;
  --color-bg-section: #1a1d12;
  --color-bg-card: #232618;
  --color-bg-card-hover: #2c3020;
  --color-surface: rgba(255, 255, 255, 0.03);
  
  --color-primary: #c8a84e;
  --color-primary-light: #e0c872;
  --color-primary-glow: rgba(200, 168, 78, 0.15);
  --color-accent: #8b6914;
  
  --color-green-deep: #2d4a1e;
  --color-green-medium: #4a7c2e;
  --color-green-light: #7ab648;
  --color-green-pale: #a8d87a;
  
  --color-ember: #d4632a;
  --color-ember-glow: rgba(212, 99, 42, 0.2);
  --color-warmth: #f0a830;
  
  --color-text: #e8e4d8;
  --color-text-muted: #a09880;
  --color-text-subtle: #706850;
  
  --color-border: rgba(200, 168, 78, 0.12);
  --color-border-active: rgba(200, 168, 78, 0.35);
  
  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px var(--color-primary-glow);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-warmth);
}

/* --- Scrollbar (Webkit) --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-normal), padding var(--transition-normal), backdrop-filter var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(15, 18, 9, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.6rem var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.nav-brand {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-primary-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px var(--color-primary-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

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

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-primary-light);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(15, 18, 9, 0.3) 0%, 
      rgba(15, 18, 9, 0.1) 40%, 
      rgba(15, 18, 9, 0.6) 75%, 
      rgba(15, 18, 9, 1) 100%
    ),
    radial-gradient(ellipse at 50% 40%, rgba(200, 168, 78, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--color-primary);
  border: 1px solid var(--color-border-active);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  background: rgba(200, 168, 78, 0.06);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title .accent {
  color: var(--color-primary-light);
  font-style: italic;
  text-shadow: 0 0 60px var(--color-primary-glow);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Floating particles */
.particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-bg-dark);
  box-shadow: 0 4px 20px rgba(200, 168, 78, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.45);
  color: var(--color-bg-dark);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 1px solid var(--color-border-active);
}

.btn-outline:hover {
  background: var(--color-primary-glow);
  transform: translateY(-2px);
  color: var(--color-primary-light);
}

/* ========================================
   SECTION LAYOUT
   ======================================== */
.section {
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.section-alt {
  background: var(--color-bg-section);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-title .accent {
  color: var(--color-primary-light);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-xl) auto;
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-active), transparent);
}

.divider-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.about-text h3 .accent {
  color: var(--color-primary-light);
  font-style: italic;
}

.about-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-quote {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-primary-light);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-primary);
  margin-top: var(--space-lg);
  line-height: 1.6;
}

/* ========================================
   FEATURES / ATRAKCJE
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-warmth));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 0 12px var(--color-primary-glow));
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

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

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 18, 9, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

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

.gallery-overlay span {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--color-primary-light);
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 500px;
}

.gallery-item:nth-child(2) {
  grid-column: 2 / 3;
  min-height: 240px;
}

.gallery-item:nth-child(3) {
  grid-column: 3 / 4;
  min-height: 240px;
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
  min-height: 240px;
}

/* ========================================
   DRINKS / TRUNKI
   ======================================== */
.drinks-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.drinks-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.drinks-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

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

.drinks-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--transition-fast);
}

.drinks-list li:hover {
  padding-left: var(--space-sm);
}

.drinks-list li:last-child {
  border-bottom: none;
}

.drink-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.drink-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  display: block;
  margin-bottom: 4px;
}

.drink-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   MAP / LOKALIZACJA
   ======================================== */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  display: block;
  filter: brightness(0.85) contrast(1.1) saturate(0.8) hue-rotate(30deg);
  transition: filter var(--transition-normal);
}

.map-container:hover iframe {
  filter: brightness(0.9) contrast(1.05) saturate(0.9) hue-rotate(15deg);
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.map-info-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.map-info-item:hover {
  border-color: var(--color-border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.map-info-item .info-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.map-info-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.map-info-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-dark);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background: var(--color-primary-glow);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  letter-spacing: 1px;
}

.footer-copy .heart {
  color: var(--color-ember);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* ========================================
   REVEAL ANIMATIONS (on scroll)
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.lightbox.active img {
  transform: scale(1);
}

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

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ========================================
   COUNTER / STATS
   ======================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px var(--color-primary-glow);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid,
  .drinks-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 350px;
  }
  
  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 18, 9, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    min-height: 600px;
  }
  
  .section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }
  
  .gallery-item {
    min-height: 250px !important;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .map-info {
    grid-template-columns: 1fr;
  }
}
