* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

.header h2 {
  color: #d63384;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header nav a:hover {
  color: #d63384;
}

/* HERO SECTION (RESTORED – FULL & CLEAN) */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1487412912498-0447578fcca8")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}


/* SECTIONS */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section.light {
  background: #fafafa;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: #d63384;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn.outline {
  background: transparent;
  border: 2px solid #d63384;
  color: #d63384;
}

.btn.whatsapp {
  background: #25d366;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item img {
  width: 100%;
  border-radius: 18px;
}

.gallery-item p {
  margin-top: 10px;
  font-weight: 500;
}

/* SHOP IMAGE */
.shop-image {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  margin: 30px auto;
  display: block;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.footer p {
  margin: 6px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home h1 {
    font-size: 32px;
  }

  .section {
    padding: 70px 25px;
  }

  .home-buttons {
    flex-direction: column;
  }
}
/* CONTACT PHONE – MAKE IT CLEAR & PROMINENT */
.contact-phone {
  margin-top: 20px;
  font-size: 18px;
  color: #222;
}

.contact-phone span {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}
/* === CONTACT SECTION HARD FIX === */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact p {
  margin-bottom: 10px;
}

.contact-phone {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 15px;
}
