/* Reset and base styles */
body {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  background: linear-gradient(135deg, #1b1b1b, #2c2c2c);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


h1, h2, header p {
  font-family: 'League Spartan', sans-serif;
}

header img {
  margin-bottom: 0.5rem;  
}

h2 {
  margin-top: 0;          
}


.tagline {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 0.5rem;
  font-family: 'League Spartan', sans-serif;
  text-align: center;
  margin-bottom: 1rem; /* optional for spacing below */
}

.hidden {
  display: none !important;
}




.logo {
  margin-bottom: 0.5rem; /* Reduce this if too big */
}


/* Header
header {
  padding: 2rem;
  background: #111;
  color: #fff;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0;
}

header p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #ccc;
} */

/* Grid Layout */
/* .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
} */

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

/* Card Styling */
.card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.4), rgba(50, 50, 50, 0.3));
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #444;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s, border 0.3s;
}



.card:hover {
  transform: scale(1.02);
  border: 1px solid #fff;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h2 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.1rem;
}

/* Button */
.dm-btn {
  display: inline-block;
  margin: 1rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
}

.dm-btn:hover {
  background: white;
  color: black;
}

.lookbook {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lookbook h2 {
  font-size: 1.5rem;
  font-family: 'League Spartan', sans-serif;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.lookbook-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.lookbook-scroll::-webkit-scrollbar {
  height: 6px;
}
.lookbook-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

.lookbook-img {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.lookbook-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook-scroll {
  scroll-behavior: smooth;
}


/* Hamburger Button */
.hamburger {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: white;
  z-index: 1001;
  cursor: pointer;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 2rem 1rem;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar a {
  display: block;
  color: white;
  margin: 1rem 0;
  text-decoration: none;
  font-weight: bold;
}

.sidebar a:hover {
  color: #ccc;
}

.card.oversized,
.card.crop,
.card.hoodie,
.card.tote {
  display: none;
}

.dandelion {
  position: fixed;
  top: -20px;
  width: 15px;
  height: 15px;
  background-image: url('assests\dandelions.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  animation: floatDown linear infinite;
  pointer-events: none;
  z-index: 9999;
}

@keyframes floatDown {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}




/* Footer */
footer {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.image-carousel {
  width: 100%;
  height: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: inherit; /* inherit glass from parent card */
}




/* .image-carousel {
  width: 100%;
  height: 280px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
} */

.image-carousel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);  /* subtle dark overlay */
  z-index: 0;
}


.image-carousel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  display: none;
}

.image-carousel {
  background: rgba(255,255,255,0.02); /* soft light tint */
}



.carousel-img {
  display: none;
  position: relative;
  z-index: 1;
}

.carousel-img.active {
  display: block;
}



.carousel-btn {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  position: absolute;
  bottom: 30%;  /* 🔼 move higher up from the bottom */
  transform: translateY(50%);
  z-index: 10;
  border-radius: 6px;
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }


.carousel-btn:hover {
  background: rgba(255,255,255,0.25);
}


.logo {
  width: 200px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
