/* =============================================
   BUENOS AIRES FLY FISHING — styles.css
   ============================================= */

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

:root {
  --color-bg-primary:   #FFFFFF;
  --color-bg-secondary: #ECE2CE;
  --color-bg-dark:      #223300;
  --color-heading:      #feb903;
  --color-heading-dark: #223300;
  --color-text:         #223300;
  --color-text-light:   #FFFFFF;
  --color-accent:       #feb903;
  --color-cta-bg:       #feb903;
  --color-cta-hover:    #e0a500;
  --color-cta-text:     #223300;
  --color-green:        #4B5D16;
  --gradient-hero:      linear-gradient(to bottom, rgba(34,51,0,0.3) 0%, rgba(34,51,0,0.65) 100%);
  --font-heading:       'Anton', sans-serif;
  --font-body:          'Inter', sans-serif;
  --max-width:          1200px;
  --transition:         0.3s ease;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
}
.btn-primary:hover { background: var(--color-cta-hover); color: var(--color-bg-dark); }

.btn-dark {
  background: var(--color-bg-dark);
  color: var(--color-accent);
}
.btn-dark:hover { background: var(--color-cta-hover); color: var(--color-bg-dark); }

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}
.btn-outline:hover { background: var(--color-text-light); color: var(--color-bg-dark); }

/* --- TOP BAR --- */
.top-bar {
  background: #feb903;
  color: var(--color-bg-dark);
  font-size: 0.8rem;
  font-family: var(--font-body);
  padding: 0.55rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.top-bar a {
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.top-bar a img { width: 16px; height: 16px; display: inline; }
.top-bar a:hover { opacity: 1; color: var(--color-bg-dark); }

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(34,51,0,0.12); background: #FFFFFF; }

/* 1) Logo más grande */
.navbar-logo img { height: 77px; width: auto; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: var(--color-cta-bg); }
.navbar-links .btn { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-bg-dark);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--color-text-light);
  font-size: 2rem; cursor: pointer;
}

/* --- HERO VIDEO --- */
.hero-video {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-video__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

/* 5) Hero texto más chico */
.hero-video__content h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-video__content p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-light);
  margin-bottom: 2rem;
  opacity: 0.92;
  font-weight: 300;
  letter-spacing: 0.02em;
}


/* --- TAGLINE STRIP --- */
.tagline-strip {
  background: var(--color-bg-primary);
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tagline-strip p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
}

/* --- SPLIT SECTIONS (50/50) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
}
.split-section__media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.split-section__media img,
.split-section__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* 7) Slider fotos cuadradas sin recortar */
.split-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--color-bg-primary);
}
.split-slider__track { display: flex; height: 100%; }
.split-slider__slide {
  min-width: 100%; height: 100%;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-primary);
}
.split-slider__slide.active { opacity: 1; }
/* Flechas slider */
.split-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(34,51,0,0.5);
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.split-slider__arrow:hover { background: #feb903; color: #223300; }
.split-slider__arrow--prev { left: 10px; }
.split-slider__arrow--next { right: 10px; }

.split-slider__slide img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}

/* 11) Títulos de secciones más chicos */
.split-section__content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-heading-dark);
  margin-bottom: 1.5rem;
}
.split-section__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.split-section__content .btn { margin-top: 1.5rem; align-self: flex-start; }

.split-section--light { background: var(--color-bg-primary); }
.split-section--secondary { background: var(--color-bg-primary); }

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
}
.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-heading-dark);
  margin-bottom: 0.75rem;
}
.section-header__line {
  width: 60px; height: 3px;
  background: var(--color-accent);
  margin: 0 auto;
}

/* --- REVIEWS SECTION (HOME) --- */
.reviews-section {
  background: #FFFFFF;
  padding: 4rem 2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

/* 8) Fotos de reviews más grandes, cuadradas al ancho del contenedor */
.review-card {
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34,51,0,0.1);
}
.review-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}
.review-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-heading-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 1rem;
}
.review-card__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  flex: 1;
  padding: 0 1rem 1.5rem;
}
.reviews-cta { text-align: center; }

/* --- REVIEWS PAGE --- */
.reviews-page {
  padding: 4rem 2rem;
  background: var(--color-bg-primary);
}
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- FAQ --- */
.faq-section {
  background: var(--color-bg-primary);
  padding: 4rem 2rem;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(34,51,0,0.15);
}

/* 9) Títulos FAQ más grandes */
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-heading-dark);
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* --- CTA FINAL --- */
.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.cta-final__image { overflow: hidden; }
.cta-final__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cta-final__image:hover img { transform: scale(1.03); }

/* 10) CTA final fondo amarillo liso, botón verde con texto amarillo */
.cta-final__content {
  background: #feb903;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
  gap: 1.5rem;
}
.cta-final__flag { font-size: 3rem; }
.cta-final__content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--color-bg-dark);
  max-width: 400px;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 4rem 2rem 2rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 50px; width: auto; margin-bottom: 1rem; opacity: 0.9; }
.footer__logo p { font-size: 0.85rem; opacity: 0.6; line-height: 1.6; }
.footer__links h4 {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.88rem; opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.footer__links a:hover { opacity: 1; color: var(--color-accent); }
.footer__contact h4 {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 0.8rem;
  transition: opacity var(--transition), color var(--transition);
}
.footer__contact a img { width: 16px; height: 16px; }
.footer__contact a:hover { opacity: 1; color: var(--color-accent); }
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0.7;
}
.footer__social a img { width: 18px; height: 18px; }
.footer__social a:hover { opacity: 1; border-color: var(--color-accent); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* --- CONTACT PAGE --- */
.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.contact-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-heading-dark);
  margin-bottom: 1rem;
}
.contact-page .subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-heading-dark);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(34,51,0,0.2);
  background: var(--color-bg-primary);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  background: var(--color-green);
  color: var(--color-text-light);
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.contact-alternatives {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(34,51,0,0.1);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-alt-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-alt-link:hover { color: var(--color-cta-bg); }

/* --- WEATHER PAGE --- */
.weather-page {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.weather-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-heading-dark);
  margin-bottom: 0.75rem;
}
.weather-page .subtitle { font-size: 1rem; opacity: 0.65; margin-bottom: 2.5rem; }
.weather-embed { width: 100%; border: none; }

/* --- INNER PAGE HERO --- */
.page-hero {
  background: var(--color-bg-secondary);
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-heading-dark);
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1rem; opacity: 0.65; max-width: 500px; margin: 0 auto; }
.page-hero__line {
  width: 50px; height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
}

/* --- FADE IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section__content { padding: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar { padding: 0.8rem 1.25rem; }
  .navbar-logo img { height: 51px; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero-video__content h1 { font-size: 1.6rem; }
  .hero-video__content p { font-size: 0.88rem; }

  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-section__media { min-height: 300px; order: -1; }
  .split-slider { aspect-ratio: 1 / 1; min-height: unset; }
  .split-section__content { padding: 2.5rem 1.5rem; }
  .split-section__content h2 { font-size: 1.4rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-page-grid { grid-template-columns: 1fr; }

  .cta-final { grid-template-columns: 1fr; }
  .cta-final__image { min-height: 300px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .contact-alternatives { flex-direction: column; }
}
