/* CSS Root Variables */
:root {
  /* Colors */
  --primary-pink: #f8c8d3;
  --light-pink: #fcecef;
  --dark-pink: #e4a1b0;
  --accent-gold: #a68a64;
  --accent-gold-hover: #8e7454;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-white: #ffffff;
  --bg-cream: #faf7f2;

  /* Typography */
  --font-script: "Great Vibes", cursive;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Quicksand", sans-serif;

  /* Spacing & Effects */
  --border-radius-sm: 8px;
  --border-radius-md: 15px;
  --border-radius-lg: 30px;
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);

  /* Responsive Sizes */
  --hero-h1-size: 5rem;
  --section-h2-size: 3.5rem;

  /* New variables for Special Offers */
  --offer-bg: #fffbf5;
  --offer-accent: #8e7454;
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
}

/* 1️⃣ Top Info Bar */
.top-info-bar {
  background-color: var(--light-pink);
  padding: 8px 0;
  font-size: 14px;
}

.top-info-bar .social-links a {
  color: var(--text-dark);
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.top-info-bar .social-links a:hover {
  color: var(--dark-pink);
}

.top-info-bar .cta-text {
  font-weight: 500;
}

/* 2️⃣ Navbar */
.navbar {
  padding: 1rem 0; /* reduced padding for sleeker look */
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-script);
  font-size: 2.8rem; /* slightly increased logo size */
  color: var(--text-dark) !important;
  line-height: 1;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 0.9rem; /* fine-tuned font size */
  padding: 0.5rem 1.2rem !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--dark-pink) !important;
}

.cart-icon {
  margin-right: 15px;
}

.cart-icon a {
  color: var(--text-dark);
  font-size: 1.2rem;
  background-color: var(--light-pink);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

/* added cart badge styling */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--dark-pink);
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* 3️⃣ Hero Section */
.hero-section {
  /* background: url(img/imgi_16_bn2.1.webp) center no-repeat; */
  background-size: cover;
 
              background: #FEF3F1;

  display: flex;
  align-items: center;
  height: 80vh;
  overflow: hidden;
}

.hero-heading {
  font-family: var(--font-script);
  font-size: var(--hero-h1-size);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.btn-custom {
  background-color: var(--dark-pink);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: none;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}

.btn-custom:hover {
  background-color: #d68e9e;
  transform: translateY(-2px);
  color: var(--bg-white);
}

.macaron-row {
  max-width: 250px;
}

.hero-cake-left,
.hero-cake-right {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-img{

  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

/* 4️⃣ Signature Cakes */
.signature-section {
  background-color: var(--bg-cream);
}

/* added cursor pointer and spacing fixes */
.cursor-pointer {
  cursor: pointer;
}



.cake-card:hover {
  transform: translateY(-10px);
  
}
.cake-card{
  overflow: hidden;
}

.cake-card img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.cake-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cake-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--dark-pink);
  background: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* added Special Offers Section Styles */
/* 4.5️⃣ Special Offers Section */
.special-offers-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.special-offers-header .main-title {
  font-size: 2.8rem;
  margin-bottom: 0.2rem;
}

.special-offers-header .sub-title {
  font-size: 2.8rem;
  color: var(--text-dark);
}

.special-offers-header .script-font {
  font-family: var(--font-script);
  color: var(--dark-pink);
}

.offer-item {
  transition: transform 0.3s ease;
}

.offer-item:hover {
  transform: translateX(10px);
}

.offer-img-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--light-pink);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.offer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.offer-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.offer-price {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

/* Best Offers Center Piece */
.best-offers-center {
  background: var(--bg-cream);
  border-radius: 200px 200px 0 0;
  position: relative;
  padding-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.center-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.center-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.view-offers-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
}

/* .basket-img-container {
  overflow: hidden;
  position: absolute;
  bottom: -80px;
  left: 16%;
  border-radius: 0 0 20px 20px;
} */
.basket-img-container img{
width: 250px;

}

.basket-img {
  transition: transform 0.5s ease;
}

.best-offers-center:hover .basket-img {
  transform: scale(1.05);
}

/* Form Step Styles */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-pink {
  color: var(--dark-pink);
}

/* Modal Customization */
.modal-content {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.bg-light-pink {
  background-color: var(--light-pink);
}

.form-control,
.form-select {
  border-radius: var(--border-radius-sm);
  padding: 0.8rem 1rem;
  border: 1px solid #eee;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--dark-pink);
}

.script-font {
  font-family: var(--font-script);
}

/* Footer Enhancements */
.footer-logo {
  font-family: var(--font-script);
  font-size: 2.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--dark-pink);
}

/* Footer Contact Styles */
.footer-contact i {
  width: 20px;
  text-align: center;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-socials a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: var(--bg-cream);
  color: var(--text-dark);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--dark-pink);
  color: white;
}

.footer-input {
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg) !important;
}

.footer-input + .btn {
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0 !important;
}

.newsletter-group .form-control {
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg) !important;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-group .btn {
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0 !important;
}

/* 5️⃣ Holiday Collection */
.holiday-section {
  background-color: var(--primary-pink);
}



.holiday-title {
  color: var(--text-dark);
}

.discount-badge {
  display: inline-block;
  background-color: var(--bg-cream);
  padding: 20px 40px;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.btn-secondary-custom {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-secondary-custom:hover {
  background-color: var(--accent-gold-hover);
  color: var(--bg-white);
}

/* 6️⃣ Footer */
.footer {
  background-color: var(--light-pink);
}

.footer-item {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-item i {
  color: var(--dark-pink);
}

/* 📱 Responsive Rules */
@media (max-width: 767px) {
  :root {
    --hero-h1-size: 3.5rem;
    --section-h2-size: 2.8rem;
  }

  .hero-heading {
    margin-top: 2rem;
  }

  .navbar-brand {
    font-size: 2rem;
  }

  .discount-badge {
    font-size: 1.8rem;
    padding: 15px 30px;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .signatureSwiper {
    padding: 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}


.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #f9f5ef;
  padding: 40px 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.icon.pink {
  background: #e6b4b4;
}

.icon.beige {
  background: #d6c5b3;
}

.text h4 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.text p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #777;
}

.divider {
  width: 1px;
  height: 50px;
  background: #ccc;
}

  .about-section {
            position: relative;
        }

        .about-img-main {
            width: 100%;
         
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image-stack:hover .about-img-main {
            transform: scale(1.02);
        }

        .about-experience-badge {
            bottom: -30px;
            right: 20px;
            min-width: 140px;
            border-bottom: 4px solid var(--dark-pink);
            z-index: 2;
        }
