/* ----------------------------------------------------
   GOOGLE FONTS & GLOBAL STYLES
---------------------------------------------------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #2b2b2b;
  color: #e6e6e6;
}

i {
  margin-right: 6px;
}



/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Background Slideshow */
.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 8s ease-in-out infinite;
  filter: brightness(60%);
}

/* Fade effect */
.fade {
  animation-name: fadeEffect;
  animation-duration: 1.5s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@keyframes zoomEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hero Text Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  animation: fadeInDown 1.5s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: fadeInUp 2s ease;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn.yellow {
  background: #f9b233;
  color: #000;
  font-weight: 600;
}

.btn.yellow:hover {
  background: #e0a125;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: white;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  user-select: none;
  z-index: 2;
  transform: translateY(-50%);
}

.next {
  right: 20px;
}

.prev {
  left: 20px;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Entrance Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ----------------------------------------------------
   FEATURED COLLECTIONS
---------------------------------------------------- */
/* COLLECTIONS SECTION */
.collections {
  padding: 80px 5%;
  background: #1c1c1c;
  color: #fff;
  text-align: center;
}

.collections h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.card p {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 20px;
}

/* Animation Effects */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

/* Optional: Smooth fade transitions when background changes */
.card.fade-transition {
  animation: fadeZoom 5s ease-in-out;
}


/* ----------------------------------------------------
   REDEFINE SECTION
---------------------------------------------------- */
.redefine {
  text-align: center;
  padding: 80px 5%;
  background: #2d2d2d;
}

.redefine h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.redefine p {
  color: #cfcfcf;
  margin-bottom: 30px;
}



/* ----------------------------------------------------
   RESPONSIVENESS
---------------------------------------------------- */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-buttons {
    margin-top: 10px;
  }

  .hero {
    padding: 200px 1%;
  }

  .hero h1 {
    font-size: 2em;
  }
  .prev, .next {
    top: 45%;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    display: block;
    margin: 10px auto;
  }
}
.slideshow {
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.fade-transition {
  opacity: 0.9;
}
