/* =====================================================
   GOA BEACHES DESTINATION PAGE
===================================================== */

/* Reset */

img{
  max-width:100%;
}

/* =====================================================
   HERO
===================================================== */

.destination-hero{
  position:relative;

  min-height:640px;

  overflow:hidden;

  border-radius:0 0 34px 34px;
}

/* Background Image */

.destination-hero-image{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

.destination-hero .hero{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1320px;

  margin:0 auto;

  padding-left:42px;
  padding-right:42px;
}

/* Overlay */

.destination-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    90deg,
    rgba(2,6,23,0.72) 0%,
    rgba(15,23,42,0.48) 38%,
    rgba(15,23,42,0.18) 72%,
    rgba(15,23,42,0.05) 100%
  );

  z-index:1;
  
}

/* Hero Content */

.destination-hero-content{
  position:relative;
  z-index:2;

  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;

  min-height:560px;

  max-width:560px;

  padding-top:34px;
  padding-bottom:54px;

  color:#fff;
}

/* =====================================================
   BREADCRUMBS
===================================================== */

.destination-breadcrumbs{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;

  margin-bottom:28px;

  font-size:0.92rem;
}

.destination-breadcrumbs a{
  color:rgba(255,255,255,0.88);

  text-decoration:none;

  transition:opacity .18s ease;
}

.destination-breadcrumbs a:hover{
  opacity:0.78;
}

.destination-breadcrumbs span{
  color:rgba(255,255,255,0.70);
}

/* =====================================================
   HERO TITLE
===================================================== */

.destination-hero h1{
  margin:0;

  max-width:560px;

  font-size:clamp(2rem,3.4vw,3.2rem);

  line-height:1.02;

  font-weight:600;

  letter-spacing:-0.025em;
  
  text-wrap:balance;
}

/* Subtitle */

.destination-subtitle{
  margin-top:12px;

  max-width:440px;

  font-size:1rem;

  line-height:1.65;

  color:rgba(255,255,255,0.92);
}

/* =====================================================
   TIMEZONE BADGE
===================================================== */

.timezone-badge{
  display:inline-flex;
  width:fit-content;
  align-items:center;
  gap:10px;

  margin-top:16px;

  padding:10px 16px;

  border-radius:999px;

  background:rgba(255,255,255,0.14);

  border:1px solid rgba(255,255,255,0.14);

  backdrop-filter:blur(10px);

  font-size:0.92rem;
  font-weight:600;
}

.timezone-badge span{
  color:#bfdbfe;
}

/* =====================================================
   LIVE CLOCK
===================================================== */

.hero-clock{
  margin-top:18px;

  font-size:clamp(2rem,4vw,3.2rem);

  line-height:0.95;

  font-weight:800;

  letter-spacing:-0.03em;

  font-variant-numeric:tabular-nums;
}

/* Date */

.hero-date{
  margin-top:6px;

  font-size:1.08rem;

  color:rgba(255,255,255,0.92);
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;

  margin-top:22px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:42px;

  padding:0 18px;

  border-radius:14px;

  text-decoration:none;

  font-size:0.95rem;
  font-weight:600;

  transition:
    transform .14s ease,
    opacity .18s ease,
    background .18s ease;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

/* Primary */

.primary-btn{
  background:#2563eb;
  color:#fff;

  box-shadow:
    0 16px 34px rgba(37,99,235,0.28);
}

.primary-btn:hover{
  background:#1d4ed8;
}

/* Secondary */

.secondary-btn{
  background:#fff;
  color:#111827;
}

.secondary-btn:hover{
  background:#f9fafb;
}

/* =====================================================
   OVERVIEW
===================================================== */

.destination-overview{
  display:grid;

  grid-template-columns:
    1.1fr .9fr;

  gap:18px;

  margin-top:-90px;

  position:relative;
  z-index:5;
}

/* Card */

.overview-card{
  background:rgba(255,255,255,0.96);

  border:1px solid rgba(148,163,184,0.22);

  border-radius:24px;

  padding:30px;

  box-shadow:
    0 18px 42px rgba(15,23,42,0.08);
}

/* About */

.about-card{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

/* Icon */

.overview-icon{
  flex-shrink:0;

  width:84px;
  height:84px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2.6rem;

  background:#eff6ff;
}

/* Title */

.about-card h2{
  margin:0 0 14px;

  font-size:1.9rem;

  color:#111827;
}

/* Paragraph */

.about-card p{
  max-width:560px;
  margin:0;

  line-height:1.8;

  color:#4b5563;
}

/* =====================================================
   STATS
===================================================== */

.stats-card{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:22px;
}

/* Item */

.stat-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.stat-icon{
  font-size:1.5rem;
}

/* Text */

.stat-item strong{
  display:block;

  margin-bottom:6px;

  color:#111827;
}

.stat-item span:last-child{
  color:#6b7280;
}

/* =====================================================
   SECTION TITLES
===================================================== */

.section-title{
  font-size:1.55rem;

  font-weight:700;

  letter-spacing:-0.02em;

  color:#111827;
}

body.dark-mode .section-title{
  color:#f3f4f6;
}

/* =====================================================
   BEACHES SECTION
===================================================== */

.beaches-section{
  margin-top:38px;
}

/* Header */

.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  margin-bottom:20px;
}

/* Grid */

.beaches-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

  gap:18px;
}

/* Card */

.beach-card{
  display:flex;
  flex-direction:column;

  height:100%;
  overflow:hidden;

  border-radius:22px;

  background:#fff;

  border:1px solid rgba(148,163,184,0.22);

  box-shadow:
    0 12px 28px rgba(15,23,42,0.06);

  transition:
    transform .15s ease,
    box-shadow .18s ease;
}

/* Hover */

.beach-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 20px 42px rgba(15,23,42,0.10);
}

/* Image */

.beach-card img{
  width:100%;
  height:200px;

  object-fit:cover;

  display:block;
}

/* Content */

.beach-content{
  flex:1;
  padding:20px;
}

.beach-content h4{
  margin:0 0 8px;

  font-size:1.08rem;

  color:#111827;
}

.beach-content p{
  margin:0;

  line-height:1.7;

  color:#6b7280;
}

/* =====================================================
   INFO GRID
===================================================== */

.info-grid-section{
  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:20px;

  margin-top:42px;
  margin-bottom:80px;
}

/* Info Box */

.info-box{
  padding:28px;

  border-radius:24px;

  background:#fff;

  border:1px solid rgba(148,163,184,0.22);

  box-shadow:
    0 12px 28px rgba(15,23,42,0.06);
}

/* Heading */

.info-box h3{
  margin:0 0 20px;

  font-size:1.3rem;

  color:#111827;
}

/* List */

.info-box ul{
  margin:0;
  padding-left:18px;
}

.info-box li{
  margin-bottom:16px;

  line-height:1.8;

  color:#4b5563;
}

/* =====================================================
   FAQ
===================================================== */

.faq-box details{
  border-bottom:
    1px solid rgba(148,163,184,0.18);

  padding:14px 0;
}

.faq-box details:last-child{
  border-bottom:none;
}

.faq-box summary{
  cursor:pointer;

  font-weight:600;

  color:#111827;

  list-style:none;
}

.faq-box summary::-webkit-details-marker{
  display:none;
}

.faq-box p{
  margin-top:12px;

  color:#6b7280;

  line-height:1.7;
}

/* =====================================================
   DARK MODE
===================================================== */

body.dark-mode .overview-card,
body.dark-mode .beach-card,
body.dark-mode .info-box{
  background:rgba(15,23,42,0.96);

  border-color:rgba(148,163,184,0.22);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.48);
}

/* Text */

body.dark-mode .about-card h2,
body.dark-mode .stat-item strong,
body.dark-mode .beach-content h4,
body.dark-mode .info-box h3,
body.dark-mode .faq-box summary{
  color:#f3f4f6;
}

body.dark-mode .about-card p,
body.dark-mode .stat-item span:last-child,
body.dark-mode .beach-content p,
body.dark-mode .info-box li,
body.dark-mode .faq-box p{
  color:#9ca3af;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1100px){

  .destination-overview{
    grid-template-columns:1fr;
  }

  .info-grid-section{
    grid-template-columns:1fr;
  }

}

/* Tablet */

@media (max-width:768px){

  .destination-hero{
    min-height:580px;
  }

  .destination-hero-content{
    padding-top:34px;
  }

  .hero-clock{
    font-size:3.8rem;
  }

  .about-card{
    flex-direction:column;
  }

  .stats-card{
    grid-template-columns:1fr;
  }

}

/* Mobile */

@media (max-width:640px){

  .destination-hero{
    border-radius:0 0 24px 24px;
  }

  .hero-clock{
    font-size:3rem;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-btn{
    width:100%;
  }

  .overview-card,
  .info-box{
    padding:22px;
  }

  .beaches-grid{
    grid-template-columns:1fr;
  }
  
  .destination-hero-content{
  min-height:540px;

  padding-top:60px;
  padding-bottom:90px;
}

.destination-subtitle{
  font-size:1.05rem;
}

.hero-clock{
  font-size:2.7rem;
}

}