/* AUVRA — Luxury Natural Haircare
   Theme: Cream · Gold · White · Subtle shadows
   Fonts: Playfair Display (serif) + Poppins (sans)
*/

:root {
  --cream: #f7efe6;
  --white: #ffffff;
  --gold: #b58b2b;
  --dark: #222;
  --muted: #777;
  --shadow: rgba(0,0,0,0.05);
  --radius: 14px;
  --transition: all 0.4s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Containers & Layout */
.section {
  padding: 5rem 1.5rem;
}

.section--alt {
  background: #fffaf3;
}

.container-grid, .container-wide {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container-grid {
  grid-template-columns: 2fr 1fr;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  background: var(--white);
  padding: 0.8rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px var(--shadow);
  animation: slide-down 0.8s ease;
}

@keyframes slide-down {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0px var(--gold); }
  50% { box-shadow: 0 0 10px rgba(181,139,43,0.25); }
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold), #e6c676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  background: transparent;
}

.btn a {
  color: #f0f0f0;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #a07a20;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fffaf3, #fefcf8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.accent {
  color: var(--gold);
}

.hero-lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: var(--white);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 1px 4px var(--shadow);
}

/* Product Card */
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-figure img {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #f0f0f0;
  object-fit: cover;
  transition: var(--transition);
}

.product-info {
  padding: 1rem 1.5rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.badge {
  background: #fff7e2;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
}

/* Testimonials */
.tcard {
  background: #fffaf3;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--dark);
}

cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  flex-wrap: wrap;
}

.foot-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.foot-mark {
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 0.5rem 0.9rem;
}

.foot-links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 1rem;
  transition: var(--transition);
}

.foot-links a:hover {
  color: var(--gold);
}

/* Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

[data-animate].in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img img {
    width: 80%;
    margin: 0 auto;
  }

  .container-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
    width: 80%;
    max-width: 300px;
  }

  .nav.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gold);
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .foot-links a {
    margin: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .btn-xl {
    font-size: 0.9rem;
    padding: 0.8rem 1.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .product-card {
    width: 100%;
    margin: 0 auto;
  }

  .card {
    padding: 1rem;
  }

  .hero-pills {
    justify-content: center;
  }

  .foot-mark {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }
}
