/* =========================
   ROOT + RESET
========================= */
:root {
  --bg-main: #faf5f0;
  --bg-soft: #f3ece4;
  --white: #ffffff;
  --black: #111111;
  --gold: #c6a25b;
  --text-main: #1a1a1a;
  --text-muted: #777777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: linear-gradient(#faf5f0, #efe4d8);
  color: var(--text-main);
  overflow-x: hidden;
}

/* =========================
   INTRO SPLASH
========================= */
.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #faf5f0, #efe4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: introFadeOut 1.2s ease forwards;
  animation-delay: 3.2s;
}

.intro-content {
  text-align: center;
  animation: introZoom 2.8s ease forwards;
}

.intro-image {
  width: 260px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}

.intro-logo {
  font-size: 3.8rem;
  letter-spacing: 0.45em;
  font-weight: 500;
}

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

@keyframes introZoom {
  from { transform: scale(1.2); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* =========================
   NAVBAR
========================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111, #c6a25b);
  color: white;
  display: grid;
  place-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--black);
  color: white;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================
   HERO (DIOR STYLE)
========================= */
.hero-dior {
  min-height: 100vh;
  padding: 8rem 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-label {
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-dior h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin: 1.2rem 0;
}

.hero-dior h1 span {
  font-style: italic;
}

.hero-dior p {
  max-width: 480px;
  color: var(--text-muted);
}

.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  background: var(--black);
  color: white;
  border: none;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  cursor: pointer;
}

.hero-link {
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

/* Hero image */
.hero-dior-image {
  position: relative;
}

.hero-dior-image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.35));
}

.floating-tag {
  position: absolute;
  bottom: 20%;
  left: -60px;
  background: white;
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 6rem 8%;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-muted);
}

/* =========================
   PRODUCTS
========================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  padding: 1.2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.product-card h3 {
  margin: 1rem 0 0.4rem;
}

.product-card span {
  color: var(--text-muted);
}

.product-card button {
  margin-top: 0.8rem;
  background: var(--black);
  color: white;
  border: none;
  padding: 0.5rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================
   STYLES GRID
========================= */
.styles {
  background: var(--bg-soft);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.style-card {
  background: var(--black);
  color: white;
  padding: 2.4rem;
  border-radius: 18px;
  text-align: center;
}

/* =========================
   REVIEWS
========================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.review {
  background: white;
  padding: 1.6rem;
  border-radius: 18px;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  background: var(--black);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.final-cta button {
  margin-top: 1.4rem;
  background: var(--gold);
  border: none;
  padding: 0.8rem 2.8rem;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 1.6rem;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-dior {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-tag {
    position: static;
    margin-top: 1rem;
  }

  .nav-links {
    display: none;
  }
}
