@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

:root {
  --charcoal:      #2A2A3D;
  --charcoal-mid:  #232340;
  --charcoal-light:#3A3A55;
  --purple:        #7B2FBE;
  --purple-light:  #9D4EDD;
  --purple-glow:   #B97AFF;
  --silver:        #C8C8D0;
  --silver-light:  #EAEAF0;
  --silver-dark:   #9A9AAA;
  --electric:      #E040FB;
  --dark:          #1E1E30;
  --text-light:    #CDCDE0;
  --text-muted:    #9090AA;
  --soft-bg:       #F0ECF5;
  --soft-mid:      #E0DAE8;
  --soft-text:     #3A3050;
}

html { scroll-behavior: smooth; }
body {
  background: var(--charcoal);
  color: var(--silver-light);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: 'Rajdhani', sans-serif; }

/* =====================
   UTILITY
   ===================== */
.eyebrow {
  font-size: 12px; letter-spacing: 6px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 14px; font-weight: 600;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--electric), var(--purple), transparent);
}
.btn-primary {
  background: var(--purple); color: var(--silver-light);
  padding: 14px 36px; border-radius: 4px;
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; border: none;
  box-shadow: 0 4px 20px rgba(123,47,190,0.4);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--electric); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(224,64,251,0.4); }
.btn-secondary {
  background: transparent; color: var(--purple-light);
  padding: 14px 36px; border-radius: 4px;
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; border: 1.5px solid var(--purple);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--purple); color: var(--silver-light); }
.btn-light {
  background: var(--silver-light); color: var(--charcoal);
  padding: 14px 36px; border-radius: 4px;
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; border: none;
  transition: background 0.3s, color 0.3s;
}
.btn-light:hover { background: var(--electric); color: white; }

/* =====================
   NAV
   ===================== */
nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(123,47,190,0.3);
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo { height: 54px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--silver); font-size: 13px;
  letter-spacing: 4px; text-transform: uppercase; font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--purple-glow); }
.nav-cta {
  background: var(--purple); color: var(--silver-light) !important;
  padding: 10px 26px; border-radius: 4px;
  transition: background 0.3s !important;
  box-shadow: 0 2px 12px rgba(123,47,190,0.3);
}
.nav-cta:hover { background: var(--electric) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--silver); border-radius: 2px; transition: all 0.3s; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--charcoal) 40%, var(--charcoal-mid) 70%, var(--dark) 100%);
  padding: 80px 48px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
  min-height: 600px;
}
.hero-video-wrap { padding: 0; }
.hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,30,48,0.5) 0%,
    rgba(30,30,48,0.3) 40%,
    rgba(30,30,48,0.5) 70%,
    rgba(30,30,48,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 80px 48px;
  min-height: 600px;
}
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(123,47,190,0.15) 0%, transparent 70%);
  pointer-events: none; z-index: 2;
}
.hero-eyebrow {
  font-size: 13px; letter-spacing: 8px; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 16px; z-index: 2;
  font-weight: 600;
}
.logo-wrap {
  position: relative; z-index: 2; margin-bottom: 28px;
}
.logo-wrap::before {
  content: ''; position: absolute; inset: -30px -40px;
  background: radial-gradient(ellipse 85% 70% at center, rgba(123,47,190,0.2) 0%, rgba(157,78,221,0.1) 50%, transparent 80%);
  z-index: -1;
}
.hero-logo {
  width: 650px; max-width: 90%; height: auto;
  filter: drop-shadow(0 4px 30px rgba(123,47,190,0.5));
  border-radius: 12px;
}
.hero-tagline {
  font-family: 'Cinzel', serif; font-style: normal;
  font-size: 32px; color: var(--purple-glow); margin-bottom: 14px; z-index: 2;
  text-shadow: 0 0 30px rgba(185,122,255,0.3);
}
.hero-desc {
  font-size: 16px; color: var(--text-light); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px; z-index: 2;
}
.hero-tagline-sub {
  font-size: 22px; margin-top: -6px; margin-bottom: 14px;
  color: var(--silver-light); text-shadow: 0 0 20px rgba(185,122,255,0.2);
}
.hero-buttons { display: flex; gap: 16px; z-index: 2; flex-wrap: wrap; justify-content: center; }

/* Clean hero overlay — lighter since no text overlay needed */
.hero-overlay-clean {
  background: linear-gradient(
    180deg,
    rgba(30,30,48,0.15) 0%,
    rgba(30,30,48,0.05) 40%,
    rgba(30,30,48,0.05) 60%,
    rgba(30,30,48,0.3) 100%
  ) !important;
}

/* Tagline Banner */
.tagline-banner {
  background: linear-gradient(160deg, var(--dark) 0%, var(--charcoal-mid) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.tagline-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(123,47,190,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.tagline-banner-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 50px 48px;
  position: relative; z-index: 1;
}

/* Logo Divider */
.logo-divider {
  display: flex; justify-content: center; align-items: center;
  padding: 30px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--charcoal) 50%, var(--dark) 100%);
}
.logo-divider-img {
  width: 320px; max-width: 70%; height: auto;
  filter: drop-shadow(0 2px 20px rgba(123,47,190,0.4));
  border-radius: 8px;
  opacity: 0.9;
}

/* =====================
   CATEGORIES
   ===================== */
.section { padding: 70px 48px; }
.section-light { padding: 70px 48px; background: var(--soft-bg); }
.section-alt { padding: 70px 48px; background: var(--dark); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title {
  font-family: 'Cinzel', serif;
  font-size: 36px; font-weight: 600; color: var(--purple-glow);
}
.section-light .section-title { color: var(--purple); }
.section-light .eyebrow { color: var(--purple); }
.section-light .card {
  background: white;
  border-color: var(--soft-mid);
}
.section-light .card:hover { border-color: var(--purple); box-shadow: 0 8px 30px rgba(123,47,190,0.15); }
.section-light .card-body h3 { color: var(--purple); }
.section-light .card-body p { color: var(--soft-text); }

.cards { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.card {
  flex: 1; min-width: 200px; max-width: 280px; background: var(--charcoal-mid);
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(123,47,190,0.2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.card:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(123,47,190,0.25); }
.card-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.card-img.apparel   { background: linear-gradient(135deg, #E8E0F0, #D0C0E8); }
.card-img.drinkware { background: linear-gradient(135deg, #E0E0F0, #C8C0E8); }
.card-img.candles   { background: linear-gradient(135deg, #F0E0F0, #E0C8E8); }
.card-img.decor     { background: linear-gradient(135deg, #E0E0F0, #D0D0E8); }
.card-img.new       { background: linear-gradient(135deg, #E8E0F0, #D8C8E8); }

/* Dark section card overrides */
.section .card-img.apparel   { background: linear-gradient(135deg, #1A1A2E, #2D1B4E); }
.section .card-img.drinkware { background: linear-gradient(135deg, #1A2035, #1B2D4E); }
.section .card-img.candles   { background: linear-gradient(135deg, #2A1A2E, #3D1B4E); }
.section .card-img.decor     { background: linear-gradient(135deg, #1A1A35, #2D2D4E); }
.card-body { padding: 20px; }
.card-body h3 {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 600;
  color: var(--purple-glow); margin-bottom: 8px;
}
.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.card-link { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--electric); font-weight: 700; }
.card-link:hover { color: var(--purple-glow); }

/* =====================
   CUSTOM ORDERS
   ===================== */
.custom-section {
  padding: 70px 48px;
  background: var(--soft-bg);
  text-align: center;
}
.custom-section h2 {
  font-family: 'Cinzel', serif; font-size: 36px; font-weight: 600;
  color: var(--purple); margin-bottom: 16px;
}
.custom-section > p {
  color: var(--soft-text); font-size: 16px; max-width: 580px;
  margin: 0 auto 40px; line-height: 1.8;
}
.custom-steps { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.step {
  background: white; border-radius: 8px; padding: 30px 22px;
  width: 200px; border: 1px solid var(--soft-mid); text-align: center;
  box-shadow: 0 2px 16px rgba(123,47,190,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(123,47,190,0.15); border-color: var(--purple-light); }
.step-num {
  font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700;
  color: var(--electric); margin-bottom: 10px;
}
.step h4 {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 8px; font-weight: 700;
}
.step p { font-size: 13px; color: var(--soft-text); line-height: 1.6; }

/* =====================
   QUOTE ROTATOR
   ===================== */
.quote-section {
  background: linear-gradient(135deg, var(--purple), #4A1A6B);
  padding: 70px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 120px; line-height: 0.5;
  color: rgba(255,255,255,0.1); margin-bottom: 20px;
}
.quote-section blockquote {
  font-family: 'Cinzel', serif; font-style: italic;
  font-size: 28px; color: var(--silver-light); max-width: 700px;
  margin: 0 auto 20px; line-height: 1.6; font-weight: 400;
}
.quote-section cite {
  font-family: 'Rajdhani', sans-serif; font-size: 13px;
  letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-style: normal;
}

/* =====================
   BANNER
   ===================== */
.banner {
  background: linear-gradient(135deg, var(--dark), var(--charcoal-mid)); 
  padding: 60px 48px; text-align: center;
  border-top: 1px solid rgba(123,47,190,0.3);
  border-bottom: 1px solid rgba(123,47,190,0.3);
}
.banner h2 {
  font-family: 'Cinzel', serif; font-size: 36px; font-weight: 600;
  color: var(--purple-glow); margin-bottom: 16px;
}
.banner p { color: var(--text-light); font-size: 16px; max-width: 520px; margin: 0 auto 28px; line-height: 1.8; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--dark); border-top: 1px solid rgba(123,47,190,0.3);
  padding: 32px 48px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { height: 40px; object-fit: contain; border-radius: 4px; }
.footer-text { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: var(--silver-dark); letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--electric); }

/* =====================
   ABOUT PAGE
   ===================== */
.about-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--charcoal-mid) 60%, var(--dark) 100%);
  padding: 80px 48px; text-align: center;
}
.about-hero h1 {
  font-family: 'Cinzel', serif; font-size: 48px; font-weight: 700;
  color: var(--purple-glow); margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(185,122,255,0.2);
}
.about-hero p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.9; }
.about-content { max-width: 760px; margin: 0 auto; padding: 60px 48px; }
.about-content h2 {
  font-family: 'Cinzel', serif; font-size: 32px; font-weight: 600;
  color: var(--purple-glow); margin-bottom: 16px;
}
.about-content p { font-size: 16px; color: var(--text-light); line-height: 1.9; margin-bottom: 24px; }

/* =====================
   FORM
   ===================== */
.form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--soft-bg); border-radius: 12px;
  padding: 48px; border: 1px solid var(--soft-mid);
  box-shadow: 0 4px 30px rgba(123,47,190,0.08);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 8px; font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--soft-mid); border-radius: 6px;
  background: #FAF5EC; font-family: 'Rajdhani', sans-serif;
  font-size: 16px; color: var(--charcoal);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 12px rgba(123,47,190,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver-dark);
}

/* =====================
   CART (placeholder)
   ===================== */
.cart-icon-wrap {
  position: relative; cursor: pointer; padding: 8px;
  display: flex; align-items: center;
}
.cart-icon-wrap svg {
  width: 24px; height: 24px; stroke: var(--silver);
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s;
}
.cart-icon-wrap:hover svg { stroke: var(--electric); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--dark);
    padding: 24px; border-bottom: 1px solid rgba(123,47,190,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 50px 24px; min-height: auto; }
  .hero-content { padding: 50px 24px; min-height: auto; }
  .hero-tagline { font-size: 24px; }
  .hero-logo { width: 260px; }
  .tagline-banner-inner { padding: 40px 24px; }
  .section, .section-alt, .custom-section, .quote-section, .banner { padding: 50px 24px; }
  .cards { flex-direction: column; align-items: center; }
  .card { min-width: unset; max-width: 100%; }
  .custom-steps { flex-direction: column; align-items: center; }
  .step { width: 100%; max-width: 320px; }
  footer { flex-direction: column; text-align: center; padding: 24px; }
  .form-wrap { padding: 28px 20px; }
  .quote-section blockquote { font-size: 22px; }
  .section-title { font-size: 28px; }
  .about-hero h1 { font-size: 36px; }
}

/* Footer Social Icons */
.footer-social { margin: 16px 0 8px; display: flex; justify-content: center; gap: 16px; }
.footer-social a { color: var(--text-muted); transition: color 0.3s; }
.footer-social a:hover { color: var(--purple-light); }
