/* ===============================
   RESET + GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #333;
}

/* ===============================
   HEADER
================================ */
header {
  background: radial-gradient(#fff, #ffd6d6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* NAV */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #3a2c1a;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a67c52;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-icon img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cart-icon img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #3a2c1a;
}

/* ===============================
   HERO (HOME)
================================ */
.hero {
  background: url("bdaurapics/spiral curls pink.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 70px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 14px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.5;
  opacity: 0.95;
}

/* HERO BULLETS */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 12px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.hero-bullets i {
  color: #ffd6d6;
}

/* HERO CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ===============================
   PRODUCTS PAGE HERO (FIXED LAYOUT)
   Text LEFT, Image RIGHT
================================ */
.product-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 70px 5%;
  background: radial-gradient(#fff, #ffd6d6);
}

.product-hero .hero-content {
  flex: 1;
  max-width: 560px;
  text-align: left;
}

.product-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: #3a1c0c;
  line-height: 1.15;
}

.product-hero .hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a1c0c;
  opacity: 0.9;
}

.product-hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.product-hero .hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  background-color: #b68955;
  color: #fff;
  padding: 12px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #8b5e2d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* outline button */
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===============================
   SECTION HEADINGS
================================ */
h2 {
  background: linear-gradient(135deg, #b58b4b, #3e2a14);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  margin: 20px auto;
  display: block;
  width: fit-content;
  text-align: center;
}

h2:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #3f0a12, #b58b4b);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ===============================
   PRODUCTS GRID
================================ */
.products {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 50px auto 0;
  max-width: 1200px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card p {
  padding: 1rem;
  font-weight: 500;
  color: #3a2c1a;
  text-align: center;
}

/* ===============================
   MORE PRODUCTS (TOGGLE)
================================ */
.more-products {
  text-align: center;
  padding: 50px 20px;
  background: #fffaf4;
}

#product-grid {
  display: none;
  margin-top: 30px;
  animation: fadeIn 0.6s ease-in-out;
}

#product-grid.show {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   OFFER SECTION
================================ */
.offer {
  background: radial-gradient(circle at top left, #fff, #ffd6d6);
  text-align: center;
  padding: 80px 20px;
}

.offer-content {
  max-width: 800px;
  margin: 0 auto 50px;
}

.offer-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #b68955;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-content p {
  font-size: 1.1rem;
  color: #3a1c0c;
  line-height: 1.6;
}

.offer-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.offer-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.offer-button {
  margin-top: 20px;
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: linear-gradient(to bottom, #fff9f9, #ffd6d6);
  padding: 60px 40px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3 {
  color: #5c040f;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #130303;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #5c040f;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.app-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.app-icons img {
  width: 120px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.app-icons img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #5c040f;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 20px;
}

/* ===============================
   RESPONSIVE + MOBILE NAV
================================ */
@media (max-width: 900px) {
  header {
    padding: 1.2rem 2rem;
  }

  .offer-images {
    grid-template-columns: 1fr;
  }

  /* products hero stacks on smaller screens */
  .product-hero {
    flex-direction: column;
    text-align: center;
  }

  .product-hero .hero-content {
    text-align: center;
    max-width: 760px;
  }

  .product-hero .hero-image {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  /* show menu button */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* hide nav until toggled */
  nav {
    position: absolute;
    top: 92px;
    right: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 14px;
    display: none;
    z-index: 9999;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  nav a {
    color: #3a2c1a;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-bullets li {
    font-size: 0.9rem;
  }
}


/* ===============================
   ABOUT PAGE HERO (Text LEFT, Image RIGHT)
================================ */
.about-hero {
  padding: 70px 5%;
  background: radial-gradient(#fff, #ffd6d6);
}

.about-hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero .hero-text {
  flex: 1;
  max-width: 560px;
  text-align: left;
}

.about-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: #3a1c0c;
  line-height: 1.15;
}

.about-hero .hero-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a1c0c;
  opacity: 0.9;
}

.about-hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-hero .hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .about-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-hero .hero-text {
    text-align: center;
    max-width: 760px;
  }

  .about-hero .hero-image {
    justify-content: center;
  }
}
