/* ===========================================
   VISIT NAŠICE — Main Stylesheet
   =========================================== */

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

:root {
  --navy:       #1B3A5C;
  --navy-dark:  #0F2236;
  --gold:       #C9973F;
  --gold-light: #E3B96A;
  --red:        #B5382A;
  --cream:      #F5EFE0;
  --cream-mid:  #EDE4CE;
  --white:      #FFFFFF;
  --charcoal:   #2C2C2C;
  --muted:      #777777;
  --light-bg:   #F8F5EF;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.15);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;

  --ease: 0.3s ease;
}

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

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-orientation: from-image; /* respect EXIF rotation */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----------- Shared Typography ----------- */

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 3.5rem;
}

/* ----------- Buttons ----------- */

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,63,0.4);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  transition: background var(--ease), border-color var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-nav {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.83rem;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.btn-nav:hover { background: var(--gold-light); }

/* ----------- Fade-in animation ----------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   NAVBAR
   =========================================== */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 34, 54, 0.96);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.1rem;
  white-space: nowrap;
}

.logo-fleur {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

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

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================
   HERO
   =========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,27,47,0.35) 0%,
    rgba(11,27,47,0.25) 45%,
    rgba(11,27,47,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.35);
  animation: pulseDown 2s ease infinite;
}

@keyframes pulseDown {
  0%   { transform: scaleY(1);   opacity: 0.35; }
  50%  { transform: scaleY(1.3); opacity: 0.9;  }
  100% { transform: scaleY(1);   opacity: 0.35; }
}

/* ===========================================
   FACTS STRIP
   =========================================== */

.facts-strip {
  background: var(--navy);
  padding: 2.2rem 0;
}

.facts-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 2.8rem;
  gap: 0.2rem;
}

.fact-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.fact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.fact-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.13);
}

/* ===========================================
   ABOUT
   =========================================== */

.about {
  padding: 7rem 2rem;
  background: var(--light-bg);
}

.about-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.4rem;
}

.about-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.about-text strong { color: var(--navy); }

/* Visual / Images side */
.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img,
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 4.5rem;
  left: -1.8rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.badge-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.badge-year {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary:hover img { transform: scale(1.04); }

/* ===========================================
   ATTRACTIONS
   =========================================== */

.attractions {
  padding: 7rem 2rem;
  background: var(--white);
}

.attractions-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

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

.card-featured {
  grid-column: 1 / 3;
  flex-direction: row;
}

.card-featured .card-img {
  flex: 0 0 55%;
  aspect-ratio: unset;
  min-height: 260px;
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,92,0.4) 0%, transparent 60%);
}

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

.card-body {
  padding: 1.5rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  background: var(--cream);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.1rem;
}

.card-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--ease);
  margin-top: auto;
}
.card-link:hover { color: var(--navy); }

.card-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: auto;
}

.card-links .card-link {
  margin-top: 0;
}

.card-link-ext {
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.7;
}
.card-link-ext:hover { opacity: 1; }

/* ===========================================
   GALLERY
   =========================================== */

.gallery {
  padding: 7rem 2rem;
  background: var(--cream);
}

.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.75rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--cream-mid);
}

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

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

.g-tall  { grid-row: span 2; }
.g-wide  { grid-column: span 2; }

.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(11,27,47,0.75), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.g-item:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   ACTIVITIES
   =========================================== */

.activities {
  padding: 7rem 2rem;
  background: var(--navy);
}

.activities-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.activity-img {
  height: 190px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.activity-body {
  padding: 1.2rem 1.4rem 1.6rem;
  flex: 1;
}

.activity-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.activity-body h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.activity-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
}

/* ===========================================
   PLAN YOUR VISIT
   =========================================== */

.visit {
  padding: 7rem 2rem 5rem;
  background: var(--light-bg);
}

.visit-grid {
  max-width: 1000px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.visit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.visit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.visit-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.visit-card p {
  font-size: 0.9rem;
  color: #5f5f5f;
  line-height: 1.78;
}

.visit-card em {
  font-style: italic;
  color: var(--navy);
}

.visit-featured {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.visit-featured-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(191,155,48,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.visit-featured-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
}

.visit-featured-link:hover {
  color: var(--gold);
}

/* CTA Banner */
.visit-cta {
  max-width: 780px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-cta-inner {
  padding: 3rem 3.5rem;
  text-align: center;
}

.visit-cta-inner h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.visit-cta-inner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-fleur {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand h3 {
  font-family: var(--ff-head);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-tagline {
  margin-top: 0.3rem;
  font-size: 0.75rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.3) !important;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.footer-email {
  font-size: 0.875rem;
  color: var(--gold-light) !important;
  transition: color var(--ease);
}
.footer-email:hover { color: var(--white) !important; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

.footer-disclaimer a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-disclaimer a:hover {
  color: rgba(255,255,255,0.55);
}

/* ===========================================
   LIGHTBOX
   =========================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 16, 28, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
  animation: lbFadeIn 0.22s ease;
}

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

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(1100px, 92vw);
  max-height: 80vh;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lb-img-wrap img.lb-loaded {
  opacity: 1;
}

.lb-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.lb-counter {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
  z-index: 2001;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) translateX(2px); }

/* Also make gallery items show a zoom cursor hint */
.g-item::after {
  content: '⊕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: rgba(255,255,255,0.9);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.g-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1100px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .about-container {
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .about-img-secondary {
    right: -1rem;
    bottom: -1.5rem;
    width: 50%;
  }
  .about-badge {
    left: -1rem;
    bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1.2rem; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,34,54,0.97);
    padding: 1.5rem 2rem;
  }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .card-featured {
    flex-direction: column;
  }
  .card-featured .card-img {
    flex: none;
    aspect-ratio: 16/9;
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

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

  .visit-cta-inner {
    padding: 2.5rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facts-container {
    gap: 0;
  }
  .fact-item {
    padding: 0.5rem 1.8rem;
  }
  .fact-divider {
    height: 32px;
  }
}

@media (max-width: 580px) {
  .attractions-grid {
    grid-template-columns: 1fr;
  }
  .card-featured {
    grid-column: auto;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .hero-title {
    font-size: 3.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .facts-container {
    flex-wrap: wrap;
  }
  .fact-divider {
    display: none;
  }
  .fact-item {
    padding: 0.8rem 1.5rem;
    flex: 0 0 50%;
  }
}
