:root {
  --primary: #2563eb;
  --bg: #f8fafc;
  --dark: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Playfair Display';
  letter-spacing: 0.05em;
  color: var(--dark);
}

/* =========================
   NAVIGATION
   ========================= */
.nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 300;
            color: rgb(52, 52, 52);
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
            text-shadow: 2px 2px 0 var(--accent-light);
        }

@keyframes starPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


  .star-icon {
            color: var(--accent);
            display: inline-block;
            animation: starPulse 2s ease-in-out infinite;
        }

/* Desktop menu */
.menu {
  display: flex;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* CTA */
.btn-primary {
  background: #2563eb;
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* =========================
   HAMBURGER
   ========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #0f172a;
  display: block;
}

/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #0f172a;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-cta {
  font-weight: 700;
  color: #2563eb;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .nav .menu {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .btn-primary {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }
}


/* HERO */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: auto;
}

/* BUTTONS */
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-large {
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1.5rem;
}

.section.light {
  background: var(--bg);
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* GRIDS */
.grid-3, .grid-4, .grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, 1fr) }

/* CARDS */
.card, .feature, .review, .step {
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card:hover, .feature:hover, .review:hover, .step:hover{
  transform: translateY(-20px);
 box-shadow: 0px 5px 10px #6699CC;
}

.card.highlight {
  border: 2px solid #6699CC;
}

.review span {
  color: var(--muted);
  font-size: 0.9rem;
  align-items: center;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
}

/* FOOTER */
.footer {
  background: #020617;
  color: white;
  padding: 3rem 1.5rem;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
}

.footer .contact {
  font-size: 0.9rem;
  color: #cbd5f5;
}
html {
  scroll-behavior: smooth;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
}
section {
  scroll-margin-top: 90px;
}

/* NAVIGATION */
.nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-weight: 700;
  white-space: nowrap;
}

/* MENU LINKS */
.menu {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

/* Underline hover effect (SweepSouth-style) */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.menu a:hover {
  color: var(--primary);
}

.menu a:hover::after {
  width: 100%;
}

/* BOOK BUTTON */
.nav .btn-primary {
  margin-left: 1.5rem;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
}
.star-icon {
            color: gold;
            size: 700px;
            display: inline-block;
            animation: starPulse 2s ease-in-out infinite;
}