
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff; 
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

#main-header {
    background-color: #0d47a1; 
    box-shadow: none; 
}

@media (min-width: 768px) {
    #main-header {
        
        background-color: rgba(13, 71, 161, 0.1); 
        
        box-shadow: none; 
    }
}

.scrolled {
    background-color: #0d47a1 !important; 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); 
}

.bg-hero-image {
    
    background-image: url('../assets/img/img3.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay-gradient {
    
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6));
}

.ripple-ornament:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    opacity: 0.8;
    z-index: 5;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 40;
}
#mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


.elegant-heading {
    color: #1e3a8a; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); 
    letter-spacing: 0.025em;
}


.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}


* {
  font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}


.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  position: relative;
}

.heroSwiper .swiper-slide .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.heroSwiper .swiper-slide-active .bg-image {
  transform: scale(1);
}


.heroSwiper .gradient-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.heroSwiper .swiper-slide-active .gradient-overlay {
  opacity: 1;
}

.heroSwiper .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.heroSwiper .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 60px;
  background: linear-gradient(90deg, #14b8a6, #ff6b35);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  transition: all 0.3s ease !important;
  background-image: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8555) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.15) translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5) !important;
}

.heroSwiper .swiper-button-next {
  right: 30px !important;
}

.heroSwiper .swiper-button-prev {
  left: 30px !important;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    display: none !important; 
  }
  
  .heroSwiper .swiper-pagination {
    bottom: 20px !important;
  }
  
  .heroSwiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
  }
  
  .heroSwiper .swiper-pagination-bullet-active {
    width: 45px;
  }
  
  .heroSwiper .swiper-button-next {
    right: 15px !important;
  }
  
  .heroSwiper .swiper-button-prev {
    left: 15px !important;
  }
}
