/* =====================================================================
   S&K Holiday Lighting — Master Stylesheet
   Theme: "Classic Christmas meets Magical Midnight"
   Deep midnight-navy night sky, warm-white twinkle, evergreen,
   cranberry red & gold accents. Built on Bootstrap 5.
   ===================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Midnight night-sky base */
  --sk-midnight: #07142f;
  --sk-midnight-2: #0a1838;
  --sk-midnight-3: #102a5e;
  --sk-navy-card: #0e2150;

  /* Evergreen */
  --sk-evergreen: #0b3d2e;
  --sk-evergreen-2: #15543d;

  /* Christmas accents */
  --sk-red: #c8102e;
  --sk-red-dark: #9e0c24;
  --sk-gold: #e8c87a;
  --sk-gold-bright: #f5d98b;
  --sk-gold-deep: #c9a14a;

  /* Neutrals */
  --sk-warm-white: #fff8ec;
  --sk-snow: #ffffff;
  --sk-text: #e9eefb;
  --sk-text-muted: #aebbd8;
  --sk-line: rgba(232, 200, 122, 0.18);

  /* Type */
  --sk-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sk-display: "Playfair Display", Georgia, serif;
  --sk-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Effects */
  --sk-glow-gold: 0 0 14px rgba(245, 217, 139, 0.65);
  --sk-glow-warm: 0 0 18px rgba(255, 233, 168, 0.55);
  --sk-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --sk-radius: 14px;
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sk-sans);
  color: var(--sk-text);
  background-color: var(--sk-midnight);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(16, 42, 94, 0.65), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(11, 61, 46, 0.45), transparent 55%),
    linear-gradient(180deg, #07142f 0%, #0a1838 45%, #07142f 100%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Faint star field over the whole night sky */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.2px 1.2px at 75% 18%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.6px 1.6px at 40% 70%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 50%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.3px 1.3px at 88% 60%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 12% 80%, rgba(255,255,255,0.6), transparent);
  opacity: 0.5;
}

main, footer, .sk-nav, .sk-topbar { position: relative; z-index: 2; }

h1, h2, h3, h4, h5, h6 { font-family: var(--sk-display); font-weight: 700; line-height: 1.15; color: var(--sk-warm-white); }

a { color: var(--sk-gold-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sk-warm-white); }

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

.sk-serif { font-family: var(--sk-serif); }
.sk-gold { color: var(--sk-gold-bright); }
.sk-text-muted { color: var(--sk-text-muted) !important; }

/* Section rhythm */
.sk-section { padding: 84px 0; }
.sk-section-sm { padding: 56px 0; }

.sk-eyebrow {
  font-family: var(--sk-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--sk-gold);
  margin-bottom: .6rem;
  display: inline-block;
}

.sk-lead { font-size: 1.2rem; color: var(--sk-text-muted); }

/* Gold divider with center snowflake */
.sk-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 22px 0;
}
.sk-divider::before, .sk-divider::after {
  content: ""; height: 1px; width: 90px;
  background: linear-gradient(90deg, transparent, var(--sk-gold-deep), transparent);
}
.sk-divider span { color: var(--sk-gold); font-size: 1.1rem; text-shadow: var(--sk-glow-gold); }

/* ---------- 3. Buttons ---------- */
.btn { font-family: var(--sk-sans); font-weight: 600; letter-spacing: .3px; border-radius: 50px; padding: .72rem 1.6rem; transition: all .22s ease; }

.btn-sk-primary {
  background: linear-gradient(180deg, var(--sk-red), var(--sk-red-dark));
  color: #fff; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 22px rgba(200, 16, 46, .35);
}
.btn-sk-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200, 16, 46, .5); }

.btn-sk-gold {
  background: linear-gradient(180deg, var(--sk-gold-bright), var(--sk-gold-deep));
  color: #2a1d05; border: none; font-weight: 700;
  box-shadow: 0 8px 22px rgba(201, 161, 74, .35);
}
.btn-sk-gold:hover { color: #2a1d05; transform: translateY(-2px); box-shadow: var(--sk-glow-gold), 0 12px 30px rgba(201,161,74,.45); }

.btn-sk-outline {
  background: transparent; color: var(--sk-gold-bright);
  border: 1.5px solid var(--sk-gold-deep);
}
.btn-sk-outline:hover { background: var(--sk-gold-bright); color: #2a1d05; border-color: var(--sk-gold-bright); }

.btn-lg { padding: .95rem 2.1rem; font-size: 1.05rem; }

/* ---------- 4. Top utility bar ---------- */
.sk-topbar {
  background: linear-gradient(90deg, var(--sk-evergreen), var(--sk-midnight-2));
  border-bottom: 1px solid var(--sk-line);
  font-size: .85rem; color: var(--sk-text-muted);
}
.sk-topbar a { color: var(--sk-text-muted); }
.sk-topbar a:hover { color: var(--sk-gold-bright); }
.sk-topbar .sk-topbar-phone { color: var(--sk-gold-bright); font-weight: 600; }

/* ---------- 5. Navbar ---------- */
.sk-nav {
  background: rgba(7, 20, 47, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sk-line);
  transition: background .3s ease, box-shadow .3s ease;
}
.sk-nav.sk-nav-scrolled { background: rgba(7, 20, 47, 0.96); box-shadow: 0 8px 30px rgba(0,0,0,.4); }

.sk-brand { display: flex; align-items: center; gap: 12px; }
.sk-brand-mark {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--sk-gold-bright), var(--sk-gold-deep));
  display: grid; place-items: center; color: #2a1d05; font-family: var(--sk-display);
  font-weight: 700; box-shadow: var(--sk-glow-gold);
}
.sk-brand-text { line-height: 1; }
.sk-brand-text .sk-brand-name { font-family: var(--sk-display); font-weight: 700; color: var(--sk-warm-white); font-size: 1.15rem; letter-spacing: .3px; }
.sk-brand-text .sk-brand-sub { font-size: .66rem; letter-spacing: 3px; text-transform: uppercase; color: var(--sk-gold); }

.sk-nav .navbar-nav .nav-link {
  color: var(--sk-text); font-weight: 500; padding: .5rem 1rem !important;
  position: relative;
}
.sk-nav .navbar-nav .nav-link:hover,
.sk-nav .navbar-nav .nav-link.active { color: var(--sk-gold-bright); }
.sk-nav .navbar-nav .nav-link.active::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .25rem;
  height: 2px; background: var(--sk-gold-bright); border-radius: 2px;
}
.sk-nav .dropdown-menu {
  background: var(--sk-midnight-3); border: 1px solid var(--sk-line);
  border-radius: 10px; box-shadow: var(--sk-shadow-lg);
}
.sk-nav .dropdown-item { color: var(--sk-text); }
.sk-nav .dropdown-item:hover { background: var(--sk-evergreen-2); color: var(--sk-gold-bright); }
.navbar-toggler { border-color: var(--sk-line); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(232,200,122,.25); }

/* String of lights under the navbar */
.sk-lightstring { height: 14px; position: relative; overflow: hidden; }
.sk-lightstring::before {
  content: ""; position: absolute; top: 4px; left: -5%; right: -5%; height: 2px;
  background: rgba(255,255,255,.12);
}

/* ---------- 6. Hero ---------- */
.sk-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 90px;
}
.sk-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(800px 380px at 70% 20%, rgba(16,42,94,.7), transparent 60%),
    linear-gradient(180deg, rgba(7,20,47,.2), rgba(7,20,47,.85) 75%, var(--sk-midnight) 100%);
}
/* warm glow rising from the bottom like a lit-up house line */
.sk-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px; z-index: 1;
  background: radial-gradient(60% 120px at 50% 100%, rgba(245,217,139,.22), transparent 70%);
  pointer-events: none;
}
.sk-hero-content { position: relative; z-index: 3; }
.sk-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin-bottom: 1rem; }
.sk-hero h1 .sk-glow { color: var(--sk-warm-white); text-shadow: var(--sk-glow-warm); }
.sk-hero .sk-lead { max-width: 620px; }

/* Page banner (interior pages) */
.sk-banner {
  position: relative; padding: 130px 0 70px; text-align: center; overflow: hidden;
  border-bottom: 1px solid var(--sk-line);
}
.sk-banner h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.sk-banner .sk-breadcrumb { font-size: .85rem; color: var(--sk-text-muted); }
.sk-banner .sk-breadcrumb a { color: var(--sk-gold); }

/* ---------- 7. Cards & features ---------- */
.sk-card {
  background: linear-gradient(180deg, var(--sk-navy-card), rgba(7,20,47,.6));
  border: 1px solid var(--sk-line); border-radius: var(--sk-radius);
  padding: 30px; height: 100%; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sk-card:hover { transform: translateY(-6px); border-color: var(--sk-gold-deep); box-shadow: var(--sk-shadow-lg); }
.sk-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }

.sk-icon-circle {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(245,217,139,.25), rgba(11,61,46,.5));
  border: 1px solid var(--sk-gold-deep); margin-bottom: 18px; font-size: 1.7rem;
  box-shadow: inset 0 0 20px rgba(245,217,139,.2);
}

.sk-feature-link { display: block; height: 100%; color: inherit; }
.sk-feature-link:hover { color: inherit; }

/* Checklist */
.sk-check { list-style: none; padding: 0; margin: 0; }
.sk-check li { position: relative; padding-left: 34px; margin-bottom: 14px; }
.sk-check li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--sk-gold-bright);
  text-shadow: var(--sk-glow-gold);
}

/* Stat / why-choose row */
.sk-stat { text-align: center; padding: 18px; }
.sk-stat .sk-stat-num { font-family: var(--sk-display); font-size: 2.6rem; color: var(--sk-gold-bright); text-shadow: var(--sk-glow-gold); line-height: 1; }
.sk-stat .sk-stat-label { color: var(--sk-text-muted); font-size: .95rem; margin-top: 6px; }

/* ---------- 8. Surfaces / alternating sections ---------- */
.sk-surface { background: linear-gradient(180deg, rgba(11,61,46,.35), rgba(7,20,47,.2)); border-top: 1px solid var(--sk-line); border-bottom: 1px solid var(--sk-line); }
.sk-surface-evergreen { background: linear-gradient(180deg, var(--sk-evergreen), var(--sk-midnight-2)); }

/* CTA band */
.sk-cta {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(120deg, var(--sk-evergreen), var(--sk-midnight-3));
  border-top: 1px solid var(--sk-line); border-bottom: 1px solid var(--sk-line);
  padding: 72px 0;
}
.sk-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- 9. Reviews ---------- */
.sk-review {
  background: linear-gradient(180deg, var(--sk-navy-card), rgba(7,20,47,.55));
  border: 1px solid var(--sk-line); border-radius: var(--sk-radius); padding: 28px; height: 100%;
}
.sk-stars { color: var(--sk-gold-bright); letter-spacing: 2px; text-shadow: var(--sk-glow-gold); margin-bottom: 10px; }
.sk-review-name { font-family: var(--sk-display); color: var(--sk-warm-white); margin-top: 14px; font-weight: 700; }
.sk-review p { color: var(--sk-text-muted); font-style: italic; }

/* ---------- 10. FAQ accordion ---------- */
.accordion { --bs-accordion-bg: transparent; }
.sk-faq .accordion-item { background: var(--sk-navy-card); border: 1px solid var(--sk-line); border-radius: 12px !important; margin-bottom: 14px; overflow: hidden; }
.sk-faq .accordion-button { background: transparent; color: var(--sk-warm-white); font-family: var(--sk-display); font-weight: 700; font-size: 1.1rem; box-shadow: none; }
.sk-faq .accordion-button:not(.collapsed) { background: var(--sk-evergreen-2); color: var(--sk-gold-bright); }
.sk-faq .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(232,200,122,.2); }
.sk-faq .accordion-button::after { filter: invert(85%) sepia(40%) saturate(500%) hue-rotate(2deg); }
.sk-faq .accordion-body { color: var(--sk-text-muted); }

/* ---------- 11. Before / After slider ---------- */
.sk-ba {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: var(--sk-radius); overflow: hidden;
  border: 1px solid var(--sk-gold-deep); box-shadow: var(--sk-shadow-lg);
  user-select: none; cursor: ew-resize; background: #06112a;
}
.sk-ba .sk-ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sk-ba .sk-ba-after { z-index: 1; }
.sk-ba .sk-ba-before-wrap { position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden; border-right: 2px solid var(--sk-gold-bright); }
.sk-ba .sk-ba-before-wrap .sk-ba-img { width: 100vw; max-width: 900px; }
.sk-ba .sk-ba-handle {
  position: absolute; top: 50%; left: 50%; z-index: 3; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sk-gold-bright); color: #2a1d05; display: grid; place-items: center;
  box-shadow: var(--sk-glow-gold); font-weight: 700; pointer-events: none;
}
.sk-ba .sk-ba-label {
  position: absolute; bottom: 12px; z-index: 3; font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px; background: rgba(7,20,47,.7);
  color: var(--sk-warm-white); border: 1px solid var(--sk-line);
}
.sk-ba .sk-ba-label.before { left: 12px; }
.sk-ba .sk-ba-label.after { right: 12px; }
/* Placeholder scenes when no real photo present */
.sk-ba-scene-night { background: linear-gradient(180deg,#0a1838,#102a5e 70%,#1b3a2e); }
.sk-ba-scene-lit { background: linear-gradient(180deg,#0a1838,#16357a 60%,#1b3a2e); }

/* ---------- 12. Color / design picker ---------- */
.sk-picker { background: var(--sk-navy-card); border: 1px solid var(--sk-line); border-radius: var(--sk-radius); padding: 26px; }
.sk-picker-stage {
  border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; position: relative;
  background: linear-gradient(180deg,#0a1838,#0c2150 70%,#0b3d2e);
}
.sk-roofline { position: absolute; left: 6%; right: 6%; bottom: 30%; height: 0; }
.sk-roofline .sk-bulb {
  position: absolute; top: 0; width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%,-50%); transition: background .3s ease, box-shadow .3s ease;
}
.sk-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sk-swatch {
  width: 40px; height: 40px; border-radius: 8px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, border-color .15s ease;
}
.sk-swatch:hover { transform: scale(1.08); }
.sk-swatch.active { border-color: var(--sk-warm-white); box-shadow: var(--sk-glow-warm); }

/* ---------- 13. Countdown ---------- */
.sk-countdown { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.sk-count-box {
  min-width: 84px; background: rgba(7,20,47,.65); border: 1px solid var(--sk-gold-deep);
  border-radius: 12px; padding: 14px 10px; text-align: center;
}
.sk-count-box .sk-count-num { font-family: var(--sk-display); font-size: 2.1rem; color: var(--sk-gold-bright); text-shadow: var(--sk-glow-gold); line-height: 1; }
.sk-count-box .sk-count-label { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sk-text-muted); margin-top: 6px; }

/* Booking urgency banner */
.sk-urgency {
  background: linear-gradient(90deg, var(--sk-red-dark), var(--sk-red));
  text-align: center; padding: 10px 16px; font-weight: 600; font-size: .92rem; color: #fff;
}
.sk-urgency a { color: #fff; text-decoration: underline; }

/* ---------- 14. Gallery grid ---------- */
.sk-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.sk-gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--sk-line); background: linear-gradient(180deg,#0c2150,#0b3d2e);
  display: grid; place-items: center; color: var(--sk-text-muted); text-align: center; padding: 14px;
}
.sk-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sk-gallery-item:hover img { transform: scale(1.06); }
.sk-gallery-item .sk-gallery-ph { font-size: .85rem; }
.sk-gallery-item .sk-gallery-ph .sk-ph-icon { font-size: 2rem; display: block; margin-bottom: 8px; color: var(--sk-gold); }

/* ---------- 15. Forms ---------- */
.sk-form-wrap { background: var(--sk-navy-card); border: 1px solid var(--sk-line); border-radius: var(--sk-radius); padding: 32px; }
.form-control, .form-select {
  background: rgba(7,20,47,.6); border: 1px solid var(--sk-line); color: var(--sk-text);
  border-radius: 10px; padding: .7rem .9rem;
}
.form-control:focus, .form-select:focus { background: rgba(7,20,47,.85); border-color: var(--sk-gold-deep); color: var(--sk-text); box-shadow: 0 0 0 .2rem rgba(232,200,122,.18); }
.form-control::placeholder { color: #7d8bad; }
.form-label { color: var(--sk-text); font-weight: 500; margin-bottom: .35rem; }
.sk-info-tile { background: var(--sk-navy-card); border: 1px solid var(--sk-line); border-radius: 12px; padding: 22px; }

/* ---------- 16. Footer ---------- */
.sk-footer {
  background: linear-gradient(180deg, var(--sk-midnight-2), #050d22);
  border-top: 1px solid var(--sk-line); padding: 64px 0 24px; color: var(--sk-text-muted);
}
.sk-footer h5 { color: var(--sk-gold-bright); font-family: var(--sk-display); margin-bottom: 18px; }
.sk-footer a { color: var(--sk-text-muted); }
.sk-footer a:hover { color: var(--sk-gold-bright); }
.sk-footer ul { list-style: none; padding: 0; margin: 0; }
.sk-footer ul li { margin-bottom: 8px; }
.sk-footer-bottom { border-top: 1px solid var(--sk-line); margin-top: 40px; padding-top: 20px; font-size: .85rem; text-align: center; }
.sk-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sk-line); margin-right: 8px; transition: all .2s ease; }
.sk-social a:hover { background: var(--sk-gold-bright); color: #2a1d05; border-color: var(--sk-gold-bright); }

/* ---------- 17. Snow canvas ---------- */
#sk-snow { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* ---------- 18. Animations ---------- */
@keyframes sk-twinkle { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.sk-twinkle { animation: sk-twinkle 2.4s ease-in-out infinite; }

@keyframes sk-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.sk-float { animation: sk-float 5s ease-in-out infinite; }

.sk-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.sk-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sk-twinkle, .sk-float { animation: none; }
  .sk-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  #sk-snow { display: none; }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 991.98px) {
  .sk-nav .navbar-nav .nav-link.active::after { display: none; }
  .sk-hero { min-height: auto; padding: 110px 0 70px; }
  .sk-section { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .sk-topbar .sk-topbar-left { display: none; }
  .sk-count-box { min-width: 68px; }
  .sk-count-box .sk-count-num { font-size: 1.6rem; }
}
