

/* ===== Base Styles ===== */
:root {
    --pink-light: #FFDEE2;
    --pink-medium: #FEC6A1;
    --mint: #F2FCE2;
    --cream: #FEF7CD;
    --blue-light: #D3E4FD;
    --gray-light: #F1F0FB;
    --text-dark: #333333;
    --text-medium: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  p {
    margin-bottom: 1rem;
    color: var(--text-medium);
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-light), var(--pink-medium));
  }
  
  .btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--pink-light), var(--pink-medium));
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
   /* Header & Navigation Styles */
   #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    /* background-color: transparent; */
    /* background-color: rgb(255, 255, 255); */
    background: linear-gradient(to right, #bae1f4, #f8e5f4);
    /* background-color: #1A237E ; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    /* background-color: #FFF; */
}

.logo span {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 10px;
    position: relative;
}

.nav-menu li a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
}

.scrolled .nav-menu li a {
    color: black;
}


.nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-medium);
    transition: width 0.3s ease;
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease;
}



.scrolled .logo span {
    color: rgb(0, 0, 0);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    padding: 10px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    border-radius: 5px;
    min-width: 150px;
}

.dropdown-menu li {
    margin: 0;
    list-style: none;
    text-align: center;
}

.dropdown-menu li a {
    color: black;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* margin-right: 20px; */
    }
    .scrolled  .menu-toggle {
        display: block;
        margin-right: 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu li a {
        color: black;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu li a {
        color: black;
    }
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding-top: 10px;
      padding-bottom: 10px;
      z-index: 1000;
      transition: all 0.3s ease;
      /* background-color: transparent; */
      background-color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
}
@media(max-width:400px) {
    .logo {
      width: 300px;
      margin-left: 0px;
    }
}

  
  /* ===== About Section ===== */
  .about {
    padding-top: 4rem;
    padding-bottom: 2rem;
    /* background-color: var(--mint); */
    /* background-color: #EAE6DF; */
    /* background-color: #F1EFEC; */
  }
  
  .about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    text-align: justify;
  }
  
  .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
  }
  .about-image img{
        transform: rotate(-2deg);
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .about-text p{
    color: black;
    font-size: 1.2em;
  }
 
  
  /* ===== Products Section ===== */
  .products {
    /* padding: 50px 50px; */
    padding-top: 4rem;
    padding-bottom: 2rem;
    /* background-color: var(--white); */
  }
  
  .product-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch ;
    gap: 20px;
  }
  
  .product-card {
    background: var(--white);
    width: 48%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
  }
  
  .product-image {
    height: auto;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;

  }
  
  .product-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;

    color: black;
    font-size: 1em;
  }
 
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #8a2be2;
    /* color: #0F1F5A; */
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    padding-top: 30px;
  }
  
  
  /* ===== Contact Section ===== */
  .contact {
    /* padding: 50px 50px; */
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* background-color: var(--gray-light); */
  }
  
  .contact-container {
    display: flex;
    gap: 50px;
  }

  .contact h2{
    padding-top: 5rem;
  }
  
  .contact-info {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
  }
  
  .contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
  
  .info-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  .info-item span{
    font-size: 1.2rem;
  }
  
  .info-label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  .contact-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--pink-medium);
    box-shadow: 0 0 0 2px rgba(254, 198, 161, 0.2);
  }
  /* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  font-size: 18px;
  color: #4CAF50;
  padding: 20px;
} 
.map{
  width: 60%;
  margin: 1rem auto;
}  

.map a img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

@media(max-width:768px){
  .map{
    width: 100%;
    margin: 1rem auto;
    padding: 10px;
  } 
  .info-item span{
    font-size: 1rem;
  }
  .map a img{
    height: 100%;
  }
}
  


 
  /* ===== Responsive Styles ===== */
  @media screen and (max-width: 992px) {
    .section-title {
      font-size: 2.2rem;
      /* padding-top: 4rem; */
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .about-content,
    .payment-content,
    .contact-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item:nth-child(n) {
      grid-row: span 1;
    }
  }
  
  @media screen and (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
    
    .nav-menu {
      position: fixed;
      top: 100%;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--white);
      background: linear-gradient(to right, #bae1f4, #f8e5f4);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
      gap: 20px;
      transition: all 0.4s ease;
      box-shadow: 0 5px 10px var(--shadow);
    }
    
    .nav-menu.active {
      left: 0;
      top:75px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .product-grid,
    .pricing-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  @media screen and (max-width: 576px) {
    .section-title {
      font-size: 2.5rem;
      /* padding-top: 6rem; */
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    
    .social-icons {
      justify-content: center;
    }
    
  }

  @media(max-width:768px){
      .product-grid{
        display: flex;
        flex-direction: column;
      }
      .product-card {
        background: var(--white);
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--shadow);
        transition: all 0.3s ease;
      }

      .pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    width: 100%;
  }
  
  .nav-menu li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: rgb(0, 0, 0);
  }
 
  }



  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ===== Footer ===== */
  .footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
  }
  
  /* Background image with overlay */
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/footer-image-2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
  }
  
  /* Dark overlay */
  .footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
  }
  
  .container {
    position: relative;
    z-index: 2;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-logo img {
    height: 55px;
    /* border-radius: 5px; */
    margin-right: 12px;
    /* border-radius: 50%; */
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
  
  .footer-logo span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .social-icon {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
  }
  
  .social-icon:hover img {
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
  }
  
  .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
  }
  
  .copyright p {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  /* Additional content section */
  .footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
  }
  
  .footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column p{
    color: white;
  }
  
  .footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--pink-medium);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: var(--pink-light);
    padding-left: 5px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
  }
  
  .newsletter-form button {
    background-color: var(--pink-medium);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: var(--pink-dark);
  }
  
  /* Newsletter message styles */
  .newsletter-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
  }
  
  .newsletter-success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #c8e6c9;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }
  
  .newsletter-error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #ffcdd2;
    border: 1px solid rgba(244, 67, 54, 0.3);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    
    .footer-logo {
      justify-content: center;
    }
    
    .footer-column {
      text-align: center;
      min-width: 100%;
    }
    
    .footer-column h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .newsletter-message {
      text-align: center;
    }
  }
  
  /* Hidden iframe */
  iframe {
    display: none;
  }


/* GIF Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader-gif {
  width:300px;
  margin-bottom: 20px;
}

.loading-text {
  font-size: 18px;
  color: #333;
}


/* menu section start  */
.menu-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

h1 {
  text-align: center;
  color: #ff6b6b;
  margin-bottom: 30px;
  font-size: 2.2em;
}

.section {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.section:last-child {
  border-bottom: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #e74c4c;
  /* background: linear-gradient(90deg, #ff99cc, #8a2be2); */
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
}



.size-headers {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 0 15px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #666;
}

.size-header {
  text-align: center;
  padding: 0 15px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 8px;
  transition: background-color 0.2s;
}

.menu-item:nth-child(odd) {
  background-color: #f7f7f7;
}

.menu-item:hover {
  background-color: #ffeeee;
}

.item-name {
  font-weight: 600;
  color: #333;
}

.price {
  text-align: center;
  font-weight: 600;
  width: 80px;
  color: #ff6b6b;
}

.filter-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: #ff8c8c;
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #e74c4c;
  box-shadow: 0 2px 8px rgba(231, 76, 76, 0.4);
}

.section.hidden {
  display: none;
}

/* One column for mobile */
@media (max-width: 600px) {
  .menu-item, .size-headers {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .price {
      margin: 5px auto;
  }
  
  .size-header {
      display: none;
  }
  
  .price::before {
      content: attr(data-size) ":";
  }
  
  .price {
      width: auto;
  }
}
/* menu section end  */


/* gallery section start  */
.gallery-container {
  width: 98%;
  margin: 0 auto;
}

.gallery-container h1{
  padding-top: 6.5rem;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-row {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-item {
  flex: 1;
  overflow: hidden;
  border-radius: 0;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  position: relative;
  /* aspect-ratio: 16/9; */
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-row {
      flex-direction: column;
  }
  
  .gallery-item {
      width: 100%;
      margin-bottom: 15px;
  }
}
/* gallery section end  */


/* why choose us section start  */
.why-choose{
  padding: 2rem 2rem;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;

}
.why-choose img{
  border-radius: 10px;

}
@media(max-width:768px){
  .why-choose{
  padding: 2rem 2rem;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
}
/* why choose us section end  */

*{
  /* font-family: 'Playfair Display', serif; */
  font-family: "Arbutus Slab", serif;
}
body{
  background-color: #f1def1;
  /* background: linear-gradient(to right, #ffffff, #c4cbd4); */
  background: linear-gradient(to right, #bae1f4, #f8e5f4);
}






