/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #1a1a2e, #16213e); /* Deep violet gradient */
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* === LIGHT MODE === */
body.light-mode {
  background: #f5f5f5;
  color: #111;
}

/* === HEADER === */
.sticky-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px); /* Glassy effect */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

.sticky-header.scrolled {
  background: rgba(26, 26, 46, 0.95);
}

.light-mode .sticky-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff2e63; /* Neon pink accent */
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.light-mode nav a {
  color: #111;
}

nav a:hover {
  color: #ffcc00; /* Gold accent */
}

#theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.light-mode #theme-toggle {
  color: #111;
}

/* === HERO === */
.hero {
  height: 100vh;
  background: url('fashionimages/urban-fashion.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ff2e63; /* Neon pink */
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta {
  background: #ffcc00; /* Gold */
  color: #111;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.5);
}

/* === ABOUT === */
.about {
  padding: 4rem 2rem;
}

.about-content {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text, .about-image {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #e0e0ff;
  margin-bottom: 1rem;
}

.light-mode .about-text h2 {
  color: #333;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* === SERVICES === */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #e0e0ff;
  margin-bottom: 2rem;
}

.light-mode .services h2 {
  color: #333;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff2e63;
}

.light-mode .card {
  background: rgba(0, 0, 0, 0.1);
}

/* === GALLERY === */
.gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #e0e0ff;
}

.light-mode .gallery h2 {
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-item .shop-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .shop-btn {
  background: #ff2e63;
  transform: translateX(-50%) translateY(-5px);
}

.light-mode .gallery-item .shop-btn {
  background: rgba(0, 0, 0, 0.2);
  color: #111;
}

.light-mode .gallery-item:hover .shop-btn {
  background: #ff2e63;
}

/* === ADVERTS === */
.adverts {
  padding: 4rem 2rem;
  text-align: center;
}

.adverts h2 {
  font-size: 2.5rem;
  color: #e0e0ff;
  margin-bottom: 2rem;
}

.light-mode .adverts h2 {
  color: #333;
}

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

.ad {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.ad a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
}

.light-mode .ad {
  background: rgba(0, 0, 0, 0.1);
}

/* === CONTACT === */
.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #e0e0ff;
  margin-bottom: 2rem;
}

.light-mode .contact h2 {
  color: #333;
}

#contact-form, #newsletter-form {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #e0e0ff;
}

.light-mode .form-group label {
  color: #333;
}

.form-group input, .form-group textarea, #newsletter-form input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1rem;
}

.light-mode .form-group input, .light-mode .form-group textarea, .light-mode #newsletter-form input {
  background: rgba(0, 0, 0, 0.1);
  color: #111;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.map-embed {
  margin: 2rem 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.light-mode .social-icons img {
  filter: none;
}

/* === FOOTER === */
footer {
  padding: 2rem;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  text-align: center;
}

.light-mode footer {
  background: rgba(255, 255, 255, 0.8);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
}

.light-mode .quick-links a {
  color: #111;
}

.newsletter h3 {
  font-size: 1.5rem;
  color: #e0e0ff;
  margin-bottom: 1rem;
}

.light-mode .newsletter h3 {
  color: #333;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sticky-header {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav a.active {
    color: #ffcc00; /* Gold for active page */
    font-weight: 600;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .about-content {
    flex-direction: column;
  }
  .ad-carousel {
    flex-direction: column;
  }
  .ad {
    flex: 0 0 100%;
  }
}
