/* ============================================================
   Angel's Artwork — Soft Ethereal & Whimsical
   ============================================================ */

:root {
  --lavender: #C4B1D4;
  --lavender-light: #E8DFF0;
  --lavender-deep: #6B4F87;
  --gold: #D4AF6E;
  --gold-light: #E8D5A8;
  --cream: #FDF8F4;
  --mist: #F5F0F8;
  --white: #FFFFFF;
  --text: #4A3F55;
  --text-light: #5E5270;
  --text-faint: #7B6F8A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: var(--lavender-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--lavender-deep);
  border: 1.5px solid var(--lavender);
}

.btn-outline:hover {
  background: var(--lavender-deep);
  color: var(--white);
  border-color: var(--lavender-deep);
  transform: translateY(-2px);
}

.btn-small {
  font-size: 0.72rem;
  padding: 10px 28px;
  background: var(--lavender-deep);
  color: var(--white);
}

.btn-small:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 0.85rem;
}

/* ── Particles ─────────────────────────────────────────────── */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-light), transparent);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0.3); }
  10% { opacity: 0.35; }
  90% { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ── Nav ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(139, 111, 163, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--lavender-deep);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--lavender-deep); }

.nav-shop-btn {
  background: var(--lavender-deep) !important;
  color: var(--white) !important;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.75rem !important;
}

.nav-shop-btn:hover {
  background: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(170deg, rgba(245,240,248,0.85) 0%, rgba(232,223,240,0.8) 40%, rgba(253,248,244,0.88) 100%),
    url('images/spirit/through-the-veil.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,110,0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-whisper, .whisper {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--lavender-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section shared ────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2, .about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--lavender-deep);
}

/* ── Featured ──────────────────────────────────────────────── */

.featured {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--mist);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-image img {
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(139,111,163,0.15);
  width: 100%;
}

.featured-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--lavender-deep);
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── Collection / Art Grid ─────────────────────────────────── */

.collection {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: 1.5px solid transparent;
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  border-color: var(--lavender);
  color: var(--lavender-deep);
}

.filter-btn.active {
  border-color: var(--lavender-deep);
  color: var(--lavender-deep);
  background: rgba(196,177,212,0.1);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.art-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,177,212,0.15);
  transition: transform 0.4s, box-shadow 0.4s, opacity 0.3s;
}

.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,111,163,0.12);
}

.art-card-img {
  cursor: pointer;
  overflow: hidden;
  background: var(--mist);
}

.art-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.art-card:hover .art-card-img img {
  transform: scale(1.03);
}

.art-card-info {
  padding: 20px 24px 24px;
}

.art-card-info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--lavender-deep);
  margin-bottom: 6px;
}

.art-card-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.collection-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── About ─────────────────────────────────────────────────── */

.about {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--mist);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(139,111,163,0.12);
  width: 100%;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 12px;
}

/* ── Contact ───────────────────────────────────────────────── */

.contact {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item { margin-bottom: 28px; }

.contact-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--lavender-deep);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.social-link {
  font-size: 0.88rem;
  color: var(--lavender-deep);
  border-bottom: 1px solid var(--lavender);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(196,177,212,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lavender-deep);
  box-shadow: 0 0 0 3px rgba(139,111,163,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Skip Link ─────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--lavender-deep);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  z-index: 200;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── FAQ ───────────────────────────────────────────────────── */

.faq {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--mist);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196,177,212,0.2);
  padding: 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--lavender-deep);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--lavender-deep);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  padding: 0 0 20px;
}

.faq-item a {
  color: var(--lavender-deep);
  border-bottom: 1px solid var(--lavender);
}

.faq-item a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Footer ────────────────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--mist);
  border-top: 1px solid rgba(196,177,212,0.12);
}

.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--lavender-deep);
  margin-bottom: 6px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--lavender-deep);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── Lightbox ──────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 20, 40, 0.93);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 24px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.35s;
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-caption {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.lightbox-buy {
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
  line-height: 1;
}

.lightbox-close:hover { color: var(--gold); }

/* ── Fade in ───────────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-info { text-align: center; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image { max-width: 400px; margin: 0 auto; }
  .about-text { text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 101; }

  .art-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info { text-align: center; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .filters { gap: 8px; }

  .filter-btn {
    font-size: 0.7rem;
    padding: 7px 16px;
  }

  .lightbox-img {
    max-height: 55vh;
  }
}
