body {
  font-family: "Montserrat", sans-serif;
  background-color: #f6f1f1;
  color: #fff;
  overflow-x: hidden;
}
.hero {
  background-image: url('uploads/sem.jpg');
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;  
  height: 100vh;                 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5%;
}
.navbar {
  background: rgba(0, 0, 0, 0.9);
}

.navbar-brand img {
  height: 60px;
  transition: 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: gold !important;
}
/* --- Text Animation --- */
.hero-text {
  flex: 1;
  animation: slideInLeft 1.4s ease forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- Image Animation --- */
.hero-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 1.4s ease forwards;
  opacity: 0;
}

@keyframes slideInRight {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- Button Animation (bounce on hover) --- */
.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: none;
  transition: all 0.3s ease;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-gold:hover {
  background-color: #b38e1d;
  color: #fff;
  animation: bounce 0.6s ease;
  transform: scale(1.05);
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.gold {
  color: #d4af37;
}

.hero-text h1 {
  font-family: "Montez", cursive;
  font-size: 13rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-img-wrapper img {
  border: 3px solid #d4af37;
  transition: transform 0.5s ease;
  width: 400px;
  border-radius: 20px;
}

.hero-img-wrapper img:hover {
  transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-family: "Montez", cursive;
    font-size: 7rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  }

  .btn-gold {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    padding: 10px 20px;
  }

  .hero-text, .hero-img-wrapper {
    animation: none;
    opacity: 1;
  }
}

/* Section background */
.collections {
  background-color: #f6f5f5;
  color: #fff;
}

/* Card styling */
.collection-card {
  background-color: #f6f5f5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card img {
  height: 250px;
  width: 100%;
  object-fit: contain; /* shows the whole image */
  background-color: #f6f5f5; /* fills empty space with black */
  padding: 5px;
}


/* Card text and hover */
.collection-card .card-title {
  color: gold;
  font-weight: 600;
  text-transform: uppercase;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Button styling */
.collection-card .btn-outline-warning {
  border-color: gold;
  color: gold;
  transition: all 0.3s ease;
}

.collection-card .btn-outline-warning:hover {
  background-color: gold;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .collection-card img {
    height: 200px; /* smaller image height on phones */
  }

  .collection-card .card-body {
    padding: 10px;
  }

  .collections h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .collection-card {
    margin-bottom: 20px;
  }
}
.lookbook {
  background-color: #f6f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lookbook h2.text-gold {
  color: gold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.lookbook .carousel-item img {
  width: 100%;
  height: 400px;         /* container height */
  object-fit: contain;    /* ensures entire image shows */
  object-position: center;
  border-radius: 10px;
  background-color: #f6f5f5; /* fills empty space with white */
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.lookbook .carousel-item img:hover {
  transform: scale(1.02); /* slight hover zoom without cropping */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lookbook .carousel-item img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .lookbook .carousel-item img {
    height: 200px;
  }
}


/* Carousel controls color (gold) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%) sepia(100%) saturate(500%) hue-rotate(20deg);
}

.carousel-indicators button {
  background-color: gold;
}
.testimonials {
  background-color: #f6f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonials h2.text-gold {
  color: gold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.testimonial-card {
  max-width: 600px;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card h5 {
  color: gold;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.testimonial-card small {
  color: #ccc;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
  }
}
.contact {
  background-color: #f6f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact h2.text-gold {
  color: gold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.contact-form {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: gold;
  box-shadow: 0 0 5px gold;
  background-color: #222;
  color: #fff;
}

.btn-gold {
  background-color: gold;
  color: #000;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background-color: #e6c200;
}

.text-gold {
  color: gold;
}

.text-gold:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}
.footer {
  background-color: #000;
  padding-top: 60px;
  padding-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer h3, .footer h5 {
  color: gold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.footer p {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: gold;
  letter-spacing: 1px;
}

.social-icon {
  display: inline-block;
  color: gold;
  font-size: 1.5rem;
  margin-right: 12px;
  transition: 0.3s;
}

.social-icon:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-divider {
  border-color: #444;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .footer h3, .footer h5 {
    text-align: center;
  }
  .footer-links {
    text-align: center;
    padding-left: 0;
  }
  .social-icon {
    margin-right: 8px;
    margin-top: 5px;
  }
}
/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: -80px; /* start off-screen */
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: slideIn 1s forwards, pulse 2s infinite 2s; /* slide-in + pulse */
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Slide-in keyframes */
@keyframes slideIn {
  to {
    right: 30px; /* final position */
  }
}

/* Pulse keyframes */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
