/* =============================================
   BATOI BHAI - Main Stylesheet
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #0a1628;
  --secondary: #c9a84c;
  --accent: #e8d5a3;
  --light: #f7f3ec;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #7a7a7a;
  --border: rgba(201, 168, 76, 0.25);
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  padding: 0 5%;
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar.solid {
  background: var(--primary);
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width var(--transition);
}

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

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social a {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: color var(--transition);
}

.nav-social a:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 12px;
  background: var(--secondary);
  border: none;
  border-radius: 4px;
  min-width: 48px;
  min-height: 44px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--primary);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--secondary);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.3) 0%,
    rgba(10, 22, 40, 0.6) 60%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.hero-badge i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* --- Flag Carousel --- */
.flags-band {
  background: var(--primary);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.flags-band::before,
.flags-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.flags-band::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.flags-band::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}

.flags-track {
  display: flex;
  gap: 2rem;
  animation: flagScroll 30s linear infinite;
  width: max-content;
}

.flags-track:hover {
  animation-play-state: paused;
}

@keyframes flagScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
  transition: var(--transition);
}

.flag-item:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.1);
}

.flag-item img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}

.flag-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--secondary);
  padding: 30px 5%;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.75);
  font-weight: 500;
  margin-top: 4px;
}

/* --- Intro Section --- */
.section {
  padding: 90px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.intro-image-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--secondary);
  padding: 20px 25px;
  text-align: center;
}

.intro-image-badge .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.intro-image-badge .small-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.intro-text .section-label {
  margin-bottom: 0.5rem;
}

.intro-text .section-title {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-weight: 300;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-item i {
  color: var(--secondary);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

/* --- Destinations Preview --- */
.destinations-section {
  background: var(--primary);
  padding: 90px 5%;
}

.destinations-section .section-title {
  color: var(--white);
}

.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dest-header .view-all {
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dest-header .view-all:hover {
  gap: 14px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}

.dest-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.85);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
}

.dest-country {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 4px;
}

.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 600;
}

.dest-card.featured {
  grid-column: span 2;
}

.dest-card.featured img {
  height: 320px;
}

/* --- Vlog Preview --- */
.vlog-preview {
  padding: 90px 5%;
  background: var(--light);
}

.vlog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vlog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.vlog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.vlog-thumb {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.vlog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vlog-card:hover .vlog-thumb img {
  transform: scale(1.05);
}

.vlog-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,0.4);
  transition: var(--transition);
}

.vlog-play i {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}

.vlog-card:hover .vlog-play i {
  transform: scale(1.1);
  background: var(--white);
}

.vlog-body {
  padding: 20px;
}

.vlog-platform {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 6px;
}

.vlog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

/* --- Social Links Band --- */
.social-band {
  background: var(--secondary);
  padding: 50px 5%;
  text-align: center;
}

.social-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.social-band p {
  color: rgba(10,22,40,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link i {
  font-size: 1rem;
}

.social-link:hover {
  background: rgba(10,22,40,0.8);
  transform: translateY(-3px);
}

.social-link.yt { border-left: 3px solid #FF0000; }
.social-link.fb { border-left: 3px solid #1877F2; }
.social-link.ig { border-left: 3px solid #E1306C; }

/* --- Footer --- */
footer {
  background: #050e1c;
  color: var(--white);
  padding: 70px 5% 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 0.85rem;
  width: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-bottom .footer-social {
  display: flex;
  gap: 1rem;
}

.footer-bottom .footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-bottom .footer-social a:hover {
  color: var(--secondary);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.5), rgba(10,22,40,0.85));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content .section-label {
  margin-bottom: 0.75rem;
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: var(--secondary);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-image-badge {
    right: 10px;
    bottom: 10px;
  }

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

  .dest-card.featured {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links, .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .stats-inner {
    gap: 1.5rem;
  }

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

  .dest-card.featured {
    grid-column: span 1;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }
}
