/* ========================================
   THIS IS SLOVAKIA — Design System
   Light mode, nature-inspired palette
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Nature-Inspired Palette */
  --forest-900: #0b3d2e;
  --forest-800: #145a42;
  --forest-700: #1a7a5a;
  --forest-600: #1f8c68;
  --forest-500: #27a67d;
  --forest-400: #4dbb96;
  --forest-300: #7dd4b5;
  --forest-200: #b3e8d5;
  --forest-100: #e0f5ed;
  --forest-50:  #f0faf5;

  --sky-900: #0c3547;
  --sky-800: #155e7a;
  --sky-700: #1a7ca5;
  --sky-600: #2196c4;
  --sky-500: #38b6e8;
  --sky-400: #64c9ef;
  --sky-300: #94dbf5;
  --sky-200: #c0ebfa;
  --sky-100: #e5f6fd;
  --sky-50:  #f0faff;

  --earth-700: #5c4a2f;
  --earth-600: #7a6340;
  --earth-500: #9e8356;
  --earth-400: #bfa87a;
  --earth-300: #d9c9a5;
  --earth-200: #ede2cc;
  --earth-100: #f7f2ea;

  /* Neutrals */
  --white: #ffffff;
  --gray-50:  #f8fafb;
  --gray-100: #f1f4f6;
  --gray-200: #e2e7eb;
  --gray-300: #c9d1d8;
  --gray-400: #9ba5b0;
  --gray-500: #6b7785;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Functional */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--forest-50);
  --accent: var(--forest-700);
  --accent-hover: var(--forest-600);
  --accent-light: var(--forest-100);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 68ch;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--forest-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--forest-500);
  border-radius: 2px;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 1001;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.top-bar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .top-bar__inner {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 10px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .top-bar__inner::-webkit-scrollbar {
    display: none;
  }
  .top-bar__left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
    white-space: nowrap;
  }
  .top-bar__datetime .top-bar__divider {
    display: inline;
  }
  .top-bar {
    height: 40px;
  }
  .top-bar__center {
    display: none;
  }
  .hide-on-mobile {
    display: none;
  }
}

.hide-on-desktop {
  display: none;
}

.top-bar__divider {
  margin: 0 8px;
  opacity: 0.5;
}

.top-bar__lang {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}
.top-bar__lang option {
  color: #000;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all 0.4s var(--ease-smooth);
}

@media (max-width: 768px) {
  .nav { top: 40px; }
  .hide-on-desktop {
    display: block !important;
  }
  .nav__mobile-hashtag {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    transition: color 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
    z-index: 1050;
  }
  .nav.scrolled .nav__mobile-hashtag {
    color: var(--forest-800);
  }
  .nav.menu-open .nav__mobile-hashtag {
    opacity: 0;
  }
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  top: 0;
}

.nav.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__logo-img {
  height: 64px; /* Slightly larger since it's a square logo */
  width: auto;
  transition: height 0.3s var(--ease-smooth);
  position: relative;
  z-index: 1100;
  object-fit: contain;
  mix-blend-mode: screen; /* Removes black background, keeps white text */
}

.nav.scrolled .nav__logo-img {
  mix-blend-mode: multiply; /* Removes white background, keeps black text */
  filter: invert(1); /* Inverts original black bg / white text to white bg / black text */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link:hover {
  color: var(--white);
}

.nav.scrolled .nav__link:hover {
  color: var(--forest-700);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-400);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--forest-700);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
  letter-spacing: 0.3px;
}

.nav__cta:hover {
  background: var(--forest-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 122, 90, 0.3);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 1100;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled .nav__hamburger span,
.nav__hamburger.active span {
  background: var(--gray-800);
}

.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);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px 40px;
  gap: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  overflow-y: auto;
}

.nav__mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-800);
  transition: color var(--duration-fast);
}

.nav__mobile-menu a:hover {
  color: var(--forest-600);
}


/* ==========================================
   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;
  overflow: hidden;
  background: #0b3d2e;
}

/* Poster image — shown immediately, fades out when video loads */
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 2;
  transition: opacity 3s ease-in-out;
}

.hero__poster.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Native HTML5 video backgrounds */
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.hero__video.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 0 var(--space-xl);
  animation: fadeInUp 1.2s var(--ease-smooth);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  line-height: 1.1;
}

.hero__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, #7dd4b5, #94dbf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--forest-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 122, 90, 0.35);
}

.btn--primary:hover {
  background: var(--forest-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 122, 90, 0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stats__item {
  padding: var(--space-md);
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--forest-700);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
.video-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

.video-section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.video-section__header h2 {
  margin-bottom: var(--space-md);
}

.video-section__header p {
  margin: 0 auto;
  max-width: 560px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-decoration {
  position: relative;
}

.video-decoration::before,
.video-decoration::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.video-decoration::before {
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, var(--forest-200), var(--sky-200));
  opacity: 0.6;
}

.video-decoration::after {
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(135deg, var(--sky-200), var(--forest-200));
  opacity: 0.4;
}

/* ==========================================
   VIDEO CAROUSEL
   ========================================== */
.video-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 50px;
}

.video-slider-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}

.video-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
  pointer-events: none; /* Hide clicks from inactive slides */
}

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

.video-slider-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--forest-700);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-slider-prev {
  left: 0;
}

.video-slider-next {
  right: 0;
}

.video-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.video-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-slider-dots .dot.active {
  background: var(--forest-500);
  transform: scale(1.3);
}

.video-click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  background: transparent;
}

/* ==========================================
   GALLERY / EXPLORE SECTION
   ========================================== */
.explore {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.explore__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.explore__header h2 {
  margin-bottom: var(--space-md);
}

.explore__header p {
  margin: 0 auto;
}

/* Filter tabs */
.explore__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.explore__filter-btn {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  background: var(--gray-100);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1.5px solid transparent;
}

.explore__filter-btn:hover {
  background: var(--forest-50);
  color: var(--forest-700);
  border-color: var(--forest-200);
}

.explore__filter-btn.active {
  background: var(--forest-700);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 122, 90, 0.25);
}

/* Filter Boxes (Krabice) */
.filter-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.filter-box {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

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

.filter-box__header {
  margin-bottom: var(--space-lg);
}

.filter-box__header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-700);
  margin-bottom: var(--space-sm);
}

.filter-box__header p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Gallery grid */
.explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
  group: true;
}

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

.gallery-card:nth-child(1) {
  grid-row: span 2;
}

.gallery-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-card:nth-child(1) .gallery-card__image {
  aspect-ratio: auto;
  height: 100%;
}

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

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.06);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(11, 61, 46, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  width: fit-content;
  margin-bottom: var(--space-sm);
}

.gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-card__location {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-card__info {
  padding: var(--space-lg);
}

.gallery-card__info h4 {
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.gallery-card__info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.instagram {
  padding: var(--space-5xl) 0;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.instagram__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.instagram__header h2 {
  margin-bottom: var(--space-md);
}

.instagram__header p {
  margin: 0 auto;
}

.instagram__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.instagram__handle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.instagram__handle svg {
  width: 20px;
  height: 20px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram__post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.instagram__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.instagram__post:hover img {
  transform: scale(1.1);
}

.instagram__post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.instagram__post:hover .instagram__post-overlay {
  opacity: 1;
}

.instagram__post-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.instagram__follow-bar {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

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

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

.about__image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--forest-300), var(--sky-300));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__image-badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest-700);
  line-height: 1;
}

.about__image-badge-text {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about__content h2 {
  margin-bottom: var(--space-lg);
}

.about__content p {
  margin-bottom: var(--space-lg);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--forest-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
}

.about__feature-icon svg {
  width: 22px;
  height: 22px;
}

.about__feature h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about__feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   REGIONS SECTION
   ========================================== */
.regions {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

.regions__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.regions__header h2 {
  margin-bottom: var(--space-md);
}

.regions__header p {
  margin: 0 auto;
}

.regions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.region-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.region-card:hover img {
  transform: scale(1.08);
}

.region-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(11, 61, 46, 0.80) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl);
  transition: background var(--duration-normal);
}

.region-card:hover .region-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(11, 61, 46, 0.88) 100%
  );
}

.region-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.region-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.region-card__description {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 280px;
}

.region-card__arrow {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.region-card:hover .region-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.region-card__arrow svg {
  width: 20px;
  height: 20px;
}


/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: var(--space-5xl) 0;
  background: var(--bg-primary);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: var(--space-lg);
}

.contact__info > p {
  margin-bottom: var(--space-2xl);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--forest-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
}

.contact__detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact__detail-text h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact__detail-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact__socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.contact__social {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact__social:hover {
  background: var(--forest-700);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(26, 122, 90, 0.3);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* Contact form */
.contact__form {
  background: var(--gray-50);
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contact__form h3 {
  font-family: var(--font-display);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 4px var(--forest-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  background: var(--forest-700);
  color: var(--white);
  border-radius: var(--radius-md);
}

.btn--submit:hover {
  background: var(--forest-600);
  box-shadow: 0 6px 24px rgba(26, 122, 90, 0.35);
  transform: translateY(-1px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--forest-900);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--duration-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__col a:hover {
  color: var(--forest-300);
}

.footer__divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: var(--space-xl);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-fast);
}

.footer__bottom-links a:hover {
  color: var(--forest-300);
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

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

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
}

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

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  width: 90vw;
  max-width: 1200px;
  height: 80vh;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox__media {
  flex: 2;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.lightbox__media img, .lightbox__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__sidebar {
  flex: 1;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--space-xl);
  overflow-y: auto;
  min-width: 350px;
}

.lightbox__sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lightbox__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.lightbox__sponsored {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.lightbox__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.lightbox__location {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.lightbox__divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 20px 0;
}

.lightbox__desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.lightbox__hashtags {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.lightbox__source {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .lightbox__container {
    flex-direction: column;
    height: 90vh;
  }
  .lightbox__media {
    flex: 1.5;
  }
  .lightbox__sidebar {
    flex: 1;
    min-width: 100%;
  }
  .lightbox__title { font-size: 1.5rem; }
}

.gallery-card__info-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card__info-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.gallery-card__tag--sponsored {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffc107;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 1px;
}

/* ==========================================
   LIGHTBOX RATINGS & SHARING
   ========================================== */
.lightbox__rating {
  margin: 5px 0 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.lightbox__rating .star {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.2s;
}

.lightbox__rating .star.hover,
.lightbox__rating .star.active {
  color: #ffc107;
}

.lightbox__rating .rating-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 10px;
}

.lightbox__share {
  margin-top: 10px;
  background: rgba(0,0,0,0.03);
  padding: 15px;
  border-radius: 8px;
}

.share-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}

.share-btn:hover {
  background: var(--bg-light);
}

/* ==========================================
   INFOPOINTS CARDS
   ========================================== */
.infopoint-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.infopoint-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   FOOTER SOCIAL LINKS
   ========================================== */
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.footer__socials a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.3s;
}

.footer__socials a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ==========================================
   PHASE 4: BENTO GRID & PRACTICAL TIPS
   ========================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.bento-card__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.bento-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.packing-list {
  list-style: none;
  padding: 0;
}
.packing-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}
.packing-list li input[type="checkbox"] {
  margin-top: 4px;
}

.eco-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}
.eco-rules span {
  background: rgba(39, 166, 125, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--primary);
  font-weight: 500;
}

/* ==========================================
   PHASE 4: MAGAZINE & EXPERIENCES
   ========================================== */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.mag-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.mag-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
  display: inline-block;
}

/* Events */
.event-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.event-date {
  background: var(--bg-main);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
}
.event-date span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: bold;
}
.event-date strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1;
  margin-top: 5px;
}
.event-info h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* E-Card */
.ecard-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.ecard-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ecard-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 15px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
}

/* Recipe */
.recipe-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #f4a261;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.recipe-ingredients {
  list-style: none;
  padding: 0;
  background: var(--bg-main);
  padding: 15px;
  border-radius: 8px;
}
.recipe-ingredients li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  padding-bottom: 8px;
}
.recipe-ingredients li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .explore__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card:nth-child(1) {
    grid-row: span 1;
  }

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

  .about__grid {
    gap: var(--space-3xl);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .top-bar.hidden-mobile {
    display: none !important;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

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

  .region-card {
    height: 320px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__image img {
    height: 350px;
  }

  .about__image-badge {
    bottom: -16px;
    right: 16px;
  }

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

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

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 1.25rem;
  }

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

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    min-height: 600px;
  }
}

/* ==========================================
   Google Translate Modernization
   ========================================== */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }

#google_translate_element select {
  background: #ffffff;
  color: var(--forest-600);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 5px 15px;
  padding-right: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23145a42" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 5px center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Premium Infopoints UI Styles */
.ip-header {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-main), #f4f6f5);
}
.ip-header h1 {
  font-size: 3.5rem;
  color: var(--forest-600);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
}
.ip-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.ip-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.ip-search, .ip-select {
  padding: 16px 24px;
  border: 2px solid #eaeaea;
  border-radius: 30px;
  font-size: 1.05rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}
.ip-search { flex: 1; min-width: 250px; background: #fff; }
.ip-select { min-width: 200px; background-color: #fff; cursor: pointer; appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23333" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7"></path></svg>'); background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; padding-right: 45px;}
.ip-search:focus, .ip-select:focus {
  border-color: var(--forest-400);
  box-shadow: 0 0 0 4px rgba(39, 166, 125, 0.1);
}

.ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 20px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.ip-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #f0f0f0;
}
.ip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.ip-card__img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.ip-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.ip-card:hover .ip-card__img {
  transform: scale(1.08);
}
.ip-card__region {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}
.ip-card__body {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ip-card__title {
  font-size: 1.3rem;
  color: var(--forest-600);
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.3;
}
.ip-card__city {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.ip-card__info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.ip-card__info svg {
  width: 18px; height: 18px;
  stroke: var(--forest-400);
  flex-shrink: 0;
  margin-top: 3px;
}
.ip-card__info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.ip-card__info a:hover {
  color: var(--forest-500);
  text-decoration: underline;
}
.ip-card__footer {
  margin-top: auto;
  padding-top: 25px;
}
.ip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--forest-500);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.ip-btn:hover { 
  background: var(--forest-600); 
  transform: scale(1.02);
}

.ip-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: 1.2rem;
  display: none;
  background: #fdfdfd;
  border-radius: 20px;
  border: 2px dashed #eee;
}
