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

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

:root {
  --primary:       #3d0f0f;
  --primary-dark:  #1d7065;
  --primary-hover: #5a1a1a;
  --text:          #0f172a;
  --text-light:    #475569;
  --gray:          #e2e8f0;
  --offwhite:      #f8fafc;
  --white:         #ffffff;
  --max-w:         1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
  transition: box-shadow 0.3s ease;
}

nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}

.logo img { height: 75px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

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

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

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

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  opacity: 1;
  transform: none;
  padding: 0;
  overflow: hidden;
}

#hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
  z-index: 2;
}

.hero-content { padding: 0 1.5rem; position: relative; z-index: 3; }

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin-bottom: 1.2rem;
  color: white;
  font-weight: 800;
}

.hero-content p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.88);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--primary);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.02em;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════════════════════════ */
section {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

section.visible { opacity: 1; transform: translateY(0); }
#hero           { opacity: 1; transform: none; padding: 0; }

.section-heading {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

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

/* ═══════════════════════════════════════════════════════════════
   FISHING
═══════════════════════════════════════════════════════════════ */
.fishing-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.callout {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary);
}

.callout h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.callout p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.7;
}

.fishing-body p {
  margin-bottom: 1.6rem;
  max-width: 820px;
  color: var(--text);
  margin: 0 auto 1.6rem auto;  /* centers the block, keeps text left-aligned */
}

.fishing-body p:last-of-type { margin-bottom: 0; }

.fishing-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--primary-dark);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.fishing-link:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════════
   RATES
═══════════════════════════════════════════════════════════════ */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rate-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.rate-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.rate-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.rate-details {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   GUIDES
═══════════════════════════════════════════════════════════════ */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.guide-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.guide-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
}

.guide-card-body { padding: 0; }

.guide-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.guide-card p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

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

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

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

/* ═══════════════════════════════════════════════════════════════
   GETTING THERE
═══════════════════════════════════════════════════════════════ */
.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.getting-there-body p {
  margin-bottom: 1.4rem;
  color: var(--text);
}

.getting-there-body p:last-child { margin-bottom: 0; }

.info-blocks { display: flex; flex-direction: column; gap: 1.5rem; }

.info-block {
  background: var(--white);
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
}

.info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.info-block p,
.info-block ul {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.info-block ul { padding-left: 1.1rem; }
.info-block ul li { margin-bottom: 0.35rem; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-info {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 2.1;
  text-align: center;
}

.contact-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,15,15,0.08);
}

.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .btn { justify-self: center; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.88rem;
}

footer a { color: rgba(255,255,255,0.9); text-decoration: underline; }
footer a:hover { color: white; }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.social-icon svg {
  width: 24px;
  fill: white;
}

.footer-link { color: white; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

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

.close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.82rem; }
}

@media (max-width: 768px) {

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

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

  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  body.menu-open { overflow: hidden; }

  section { padding: 70px 0; }

  .fishing-callouts,
  .rates-grid,
  .guides-grid,
  .getting-there-grid { grid-template-columns: 1fr; }

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

  #hero {
    height: 100svh;
    min-height: 600px;
  }

  .hero-content h1 { font-size: clamp(2.2rem, 10vw, 4rem); }

  .hero-content p {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
    margin-bottom: 2rem;
  }

}
