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

body {
  font-family: 'Roboto', sans-serif;
  background: #faf7f2;
  color: #333;
  margin: 0;
  overflow-x: hidden;   /* ✅ allow vertical scroll */
}
/* ================= HEADER (UNIFIED) ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* LEFT SIDE */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO */
.logo img {
  height: 45px;
  width: auto;
}

/* BRAND TEXT */
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #5b3e6d;
}

.tagline {
  font-size: 12px;
  color: #c94f7c;
  font-family: 'Great Vibes', cursive;
}

/* NAV */
nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #d36a86;
}

/* ================= PAGE TITLE ================= */
.page-title {
  padding: 30px 40px;
}

.page-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}

/* ================= CATEGORY TABS ================= */
.category-tabs {
  display: flex;
  gap: 10px;
  padding: 15px 40px;
  overflow-x: auto;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 8px 16px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.tab.active {
  background: #d36a86;
  color: #fff;
}

/* ================= CATEGORY ================= */
.category {
  display: none;
  padding: 30px 40px;
}

.category.active {
  display: block;
}

/* ================= SECTION HEADER ================= */
.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  color: #5b3e6d;
}

/* ================= PRODUCTS GRID ================= */
.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 20px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE FIX (NO CROPPING) */
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* ================= COMING SOON ================= */
.coming-msg {
  color: #888;
  margin-top: 10px;
}

/* ================= CAROUSEL ================= */
/* ================= CAROUSEL ================= */

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%;
  height: clamp(320px, 55vh, 500px);
  object-fit: cover;
  object-position: top;   /* 🔥 KEY FIX */
}
.carousel:hover .carousel-track {
  transition: none;
}

/* ================= CTA ================= */
.cta-section {
  text-align: center;
  padding: 40px 20px;   /* reduced from 60px */
}

.cta-section h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.cta-section p {
  margin-bottom: 15px;
}

.cta-section.alt {
  background: #fff;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.primary {
  background: #c94f7c;
  color: white;
}

.secondary {
  background: #5a3d6b;
  color: white;
}

/* ================= SERVICES ================= */
.services-section {
  padding: 40px 5%;
}

.services-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* SAME GRID AS PRODUCTS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* SAME CARD STYLE */
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* SAME IMAGE RULE */
.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 🔥 SAME AS PRODUCTS */
  object-fit: cover;
}

/* TITLE */
.service-card h3 {
  padding: 12px;
  font-size: 16px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.service-card img {
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}/* SECTION */
.service-gallery {
  padding: 50px 5%;
}

.service-gallery h2 {
  font-size: 26px;
  margin: 30px 0 15px;
}

/* GRID (same as products) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 2 per row */
  gap: 20px;
}

/* CARD */
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 🔥 MEDIA (image + video unified) */
.gallery-media {
  width: 100%;
  aspect-ratio: 4 / 5;   /* ⭐ BEST FOR WORK */
  object-fit: cover;
  display: block;
}

/* HOVER */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-card:hover .gallery-media {
  transform: scale(1.05);
}
.gallery-card video {
  width: 100%;
  height: 220px;              /* ✅ controls height */
  object-fit: cover;          /* ✅ prevents stretching */
  border-radius: 12px;
}
/* ================= ABOUT ================= */
/* HERO */
.about-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

/* STORY */
.about-section {
  padding: 60px 10%;
}

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

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* VALUES */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 10%;
}

.value-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.about-text {
  max-width: 520px;   /* ❗ controls line length */
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text .lead {
  font-size: 18px;
  font-weight: 500;
  color: #b8577b;   /* your brand pink */
  margin-bottom: 18px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}
/* GALLERY */
.about-gallery {
  padding: 60px 10%;
  text-align: center;
}

.about-gallery .gallery-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT ================= */
/* ================= CONTACT HERO ================= */
.contact-hero {
  height: 280px;
  background: url('../images/banner/banner1.png') center/cover no-repeat;
  position: relative;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.contact-overlay h2 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
}

.contact-overlay p {
  margin-top: 10px;
  font-size: 16px;
}

/* ================= CONTACT CARDS ================= */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 5%;
}

.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.contact-card .btn {
  background: #c94f7c;
  color: #fff;
}
/* ================= STORE SECTION ================= */
.store-section {
  padding: 60px 5%;
}

.store-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.store-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.store-text p {
  line-height: 1.7;
  color: #444;
}

.store-image img {
  width: 100%;
  border-radius: 14px;
}

/* ================= GALLERY ================= */
.contact-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 40px 5%;
}

.contact-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= MAP ================= */
.map-section {
  padding: 0 5% 40px;
}

.map-section iframe {
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .store-container {
    grid-template-columns: 1fr;
  }

  .contact-gallery {
    grid-template-columns: 1fr;
  }

  .contact-overlay h2 {
    font-size: 24px;
  }
}
/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 15px;
  background: #5b3e6d;
  color: white;
  margin-top: 40px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: 80px auto;
  max-width: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .main-header {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-card img {
    height: auto;
  }

  .carousel-track img {
    height: 250px;
  }
}