/* =========================================
   index.css — Vino BKK Landing Page Styles
   ========================================= */

/* ---- TOPNAV ---- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.topnav.scrolled {
  background: rgba(16, 9, 13, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.brand-logo em {
  font-style: normal;
  color: var(--accent-2);
}

.brand-icon {
  font-size: 1.3rem;
}

.nav-line-btn {
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  gap: 0.35rem;
}

/* ---- HERO V2 ---- */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(16,9,13,0.55) 0%, rgba(16,9,13,0.82) 60%, rgba(16,9,13,1) 100%),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,29,55,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.eyebrow-v2 {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 1.4rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin: 0 0 1.2rem;
}

.hero-title-top {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-title-main {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 30%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  color: var(--muted);
}

.hero-desc {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-premium {
  background: linear-gradient(135deg, var(--accent), #b0253f);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  box-shadow: 0 8px 28px rgba(139,29,55,0.38);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139,29,55,0.5);
  filter: brightness(1.08);
}

.hero-line-btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  gap: 0.45rem;
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  backdrop-filter: blur(6px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--accent-2), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- SECTION SHARED ---- */
.section-eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ---- SERVICES ---- */
.section-services {
  padding: 5rem 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.service-card--featured {
  background: linear-gradient(145deg, #2a1020 0%, #1a0d16 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(139,29,55,0.3), inset 0 0 24px rgba(139,29,55,0.08);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ---- CATALOG ---- */
.section-catalog {
  padding: 5rem 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.catalog-card--premium:hover  { border-color: #8b1d37; }
.catalog-card--spirit:hover{ border-color: #c58a4b; }
.catalog-card--more:hover  { border-color: #6a8b3d; }

.catalog-card-img {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 0 1.2rem;
  background: rgba(255,255,255,0.03);
}

.catalog-card-body {
  padding: 1.1rem 1.4rem 1.5rem;
}

.catalog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.catalog-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.catalog-link {
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- ABOUT ---- */
.section-about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 480px;
  line-height: 1.75;
}

.about-text .btn-premium {
  margin-top: 0.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.2s;
}

.about-stat-card:hover {
  transform: translateY(-3px);
}

.about-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.about-stat-num sup {
  font-size: 0.8rem;
  color: var(--accent-2);
  vertical-align: super;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- CTA ---- */
.section-cta {
  background: linear-gradient(135deg, #1f0c14 0%, #2a1020 50%, #1a0d16 100%);
  border-block: 1px solid var(--line);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.cta-text p {
  color: var(--muted);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---- FOOTER BRAND ---- */
.footer-brand {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .topnav-inner .menu { display: none; }

  .hero-v2-content {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}
