/* =====================================================
   THEME VARIABLES — swap these to change the entire look
   ===================================================== */
:root {
  /* ── Splash image ── */
  --hero-bg-image: url('driftwood.jpg');

  /* ── Overlay ── */
  --overlay-color: rgba(10, 10, 20, 0.55);        /* darken to taste */

  /* ── Accent / brand color ── */
  --accent:        #437fce;   /* warm gold  */
  --accent-hover:  #185099;

  /* ── Card ── */
  --card-bg:       rgba(255, 255, 255, 0.06);
  --card-border:   rgba(255, 255, 255, 0.15);
  --card-blur:     18px;

  /* ── Text ── */
  --text-primary:  #f5f0e8;
  --text-muted:    rgba(245, 240, 232, 0.65);

  /* ── Footer ── */
  --footer-bg:     rgba(0, 0, 0, 0.6);
  --footer-text:   rgba(255, 255, 255, 0.4);

  /* ── Buttons ── */
  --btn-radius:    2px;
  --btn-padding:   0.65rem 1.9rem;
  --btn-font-size: 0.78rem;
  --btn-tracking:  0.12em;

  /* ── Animations ── */
  --reveal-duration: 0.9s;
  --reveal-stagger:  0.15s;
}

/* =====================================================
   ALTERNATIVE THEME EXAMPLES
   Un-comment ONE block below to switch themes instantly.
   ===================================================== */

/* — Ocean Blue — */
/*
:root {
  --hero-bg-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1600&q=80');
  --overlay-color: rgba(5, 20, 45, 0.60);
  --accent:        #5db8e8;
  --accent-hover:  #8dd0f5;
  --card-bg:       rgba(255,255,255,0.07);
  --card-border:   rgba(93,184,232,0.25);
}
*/

/* — Forest Green — */
/*
:root {
  --hero-bg-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1600&q=80');
  --overlay-color: rgba(10, 30, 15, 0.60);
  --accent:        #7ec876;
  --accent-hover:  #a8e8a0;
  --card-bg:       rgba(255,255,255,0.06);
  --card-border:   rgba(126,200,118,0.25);
}
*/

/* — Rose / Blush — */
/*
:root {
  --hero-bg-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1600&q=80');
  --overlay-color: rgba(30, 10, 15, 0.52);
  --accent:        #e8a0b0;
  --accent-hover:  #f5c0cc;
  --card-bg:       rgba(255,255,255,0.07);
  --card-border:   rgba(232,160,176,0.25);
}
*/


/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  background: #0a0a14;
  overflow-x: hidden;
}


/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* Splash background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: slowDrift 30s ease-in-out infinite alternate;
}

@keyframes slowDrift {
  from { transform: scale(1)   translateX(0)     translateY(0); }
  to   { transform: scale(1.07) translateX(-1.5%) translateY(-1%); }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-color);
}

/* Glassmorphic card */
.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(var(--card-blur));
  -webkit-backdrop-filter: blur(var(--card-blur));
  border-radius: 4px;
}


/* =====================================================
   LOGO
   ===================================================== */
.logo-wrap {
  display: inline-block;
}

.logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px var(--accent);
}


/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.business-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}

.tagline {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.phone {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.phone i { color: var(--accent); }


/* =====================================================
   DIVIDER
   ===================================================== */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}


/* =====================================================
   BUTTONS
   ===================================================== */
.btn-cta {
  font-family: 'Jost', sans-serif;
  font-size: var(--btn-font-size);
  font-weight: 500;
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  transition: all 0.28s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta-primary {
  background: var(--accent);
  color: #0a0a14;
  border: 1px solid var(--accent);
}
.btn-cta-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #0a0a14;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.btn-cta-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}
.btn-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}


/* =====================================================
   SOCIAL ICONS
   ===================================================== */
.social-icon {
  color: var(--text-muted);
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.social-icon:hover {
  color: var(--accent);
  transform: translateY(-3px);
}


/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}


/* =====================================================
   REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.25s;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger children */
.hero-card > * {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-card > *:nth-child(1) { animation-delay: 0.35s; }
.hero-card > *:nth-child(2) { animation-delay: 0.48s; }
.hero-card > *:nth-child(3) { animation-delay: 0.56s; }
.hero-card > *:nth-child(4) { animation-delay: 0.64s; }
.hero-card > *:nth-child(5) { animation-delay: 0.72s; }
.hero-card > *:nth-child(6) { animation-delay: 0.80s; }
.hero-card > *:nth-child(7) { animation-delay: 0.90s; }


/* =====================================================
   RESPONSIVE TWEAKS
   ===================================================== */
@media (max-width: 480px) {
  .hero-card {
    padding: 2.25rem 1.5rem;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
