
/*
Theme Name: VayloDeals Lux
Theme URI: https://vaylodeals.com
Author: Jigar / GPT
Description: Luxury travel deals landing theme for VayloDeals with Top 10 and 24-hour offer sections, focused on US advertisers.
Version: 1.0
Text Domain: vaylodeals-lux
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b1220;
  background-color: #050816;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5,8,22,0.96), rgba(5,8,22,0.7), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.2);
  color: #e5e7eb;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fde68a, #f59e0b 40%, #7c2d12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(250,250,250,0.15), 0 14px 35px rgba(0,0,0,0.55);
  font-weight: 700;
  font-size: 0.9rem;
  color: #020617;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-title {
  font-weight: 650;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-tagline {
  font-size: 0.75rem;
  color: #a5b4fc;
}

/* nav */
.main-nav ul {
  display: flex;
  gap: 24px;
  font-size: 0.86rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: #e5e7eb;
  opacity: 0.88;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,#facc15,#f97316);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: #9ca3af;
}

.header-chip {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at top, rgba(148,163,184,0.35), transparent 60%);
}

.header-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #020617;
  font-weight: 600;
  font-size: 0.86rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  color: #f9fafb;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-lux.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.82);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(15,23,42,0.7), transparent 55%),
    linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.35), rgba(15,23,42,0.9));
  z-index: -1;
}

.hero-inner {
  max-width: 640px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: #a5b4fc;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.5rem, 4.1vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-title span.highlight {
  color: #facc15;
}

.hero-subtitle {
  font-size: 0.97rem;
  max-width: 480px;
  color: #e5e7eb;
  opacity: 0.95;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-primary {
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #020617;
  font-weight: 600;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.85);
}

.btn-secondary {
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(15,23,42,0.95);
  border-color: #facc15;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.8rem;
  margin-top: 6px;
}

.hero-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 4px;
  color: #9ca3af;
}

.hero-stat-value {
  font-weight: 600;
  color: #e5e7eb;
}

/* ===== SECTIONS ===== */

.section {
  padding: 80px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617 40%, #020617);
  border-top: 1px solid rgba(148,163,184,0.15);
  border-bottom: 1px solid rgba(148,163,184,0.1);
}

.section-header {
  margin-bottom: 32px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.8rem;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.section-subtitle {
  max-width: 520px;
  font-size: 0.92rem;
  color: #9ca3af;
}

/* ===== VAYLO WEEKENDERS (TOP 10) ===== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card-destination {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: #f9fafb;
  border: 1px solid rgba(148,163,184,0.35);
}

.card-destination img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.4s ease, filter 0.2s ease;
}

.card-destination:hover img {
  transform: scale(1.04);
  filter: brightness(1.02);
}

.card-destination-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.card-destination-title {
  font-size: 1rem;
  margin-bottom: 3px;
}

.card-destination-meta {
  font-size: 0.8rem;
  opacity: 0.85;
}

.card-destination-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(250,204,21,0.7);
}

/* ===== 24-HOUR LUX DEAL ===== */

.flash-section {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 34px;
  align-items: center;
}

.flash-card {
  border-radius: 20px;
  border: 1px solid rgba(250,204,21,0.5);
  background: radial-gradient(circle at top left, #1f2937, #020617);
  padding: 20px 20px 22px;
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.flash-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(127,29,29,0.2);
  color: #fecaca;
  border: 1px solid rgba(248,113,113,0.6);
  margin-bottom: 10px;
}

.flash-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.flash-meta {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.flash-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.flash-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(148,163,184,0.5);
}

.flash-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.flash-footnote {
  font-size: 0.78rem;
  color: #9ca3af;
}

.flash-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.3);
}

/* ===== ADVERTISER SECTION ===== */

.advertisers {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 40px;
  align-items: center;
}

.advertiser-points {
  margin-top: 14px;
}

.advertiser-points li {
  color: #d1d5db;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.advertiser-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.1);
  color: #bbf7d0;
  border: 1px solid rgba(34,197,94,0.5);
  font-size: 0.76rem;
  font-weight: 600;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.step-card {
  background: radial-gradient(circle at top, #020617, #020617 40%, #020617);
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(148,163,184,0.4);
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.step-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 5px;
}

.step-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

/* CTA strip */
.cta-strip {
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #e5e7eb;
  padding: 36px 0;
  border-top: 1px solid rgba(148,163,184,0.4);
}

.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-strip-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-strip-text {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Footer */
.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(31,41,55,0.9);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0,2.1fr) repeat(2, minmax(0,1fr));
  gap: 30px;
  margin-bottom: 28px;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-text {
  font-size: 0.84rem;
  color: #9ca3af;
  max-width: 360px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-bottom {
  border-top: 1px solid rgba(55,65,81,0.9);
  padding-top: 12px;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-bottom a {
  color: #9ca3af;
}

.footer-bottom a:hover {
  color: #facc15;
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav {
    display: none; /* simple: hide menu on small screens for now */
  }
  .hero {
    padding-top: 130px;
  }
  .advertisers,
  .flash-section {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
}
