/* style.css */
:root {
  --primary-dark: #1b1633;
  --accent-purple: #c155ff;
  --bg-gradient-top: #f0f7f8;
  --bg-gradient-mid: #f5f0fb;
  --bg-gradient-bottom: #fcf1f5;
  --text-color: #333333;
  --banner-gradient-1: #8a2be2;
  --banner-gradient-2: #da70d6;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Playfair Display", serif;
}

/* Navbar */
.navbar {
  background: transparent;
  transition: all 0.3s ease;
  padding-top: 1.5rem;
}

.navbar-brand.logo {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: 2px;
}

.nav-link {
  color: var(--primary-dark) !important;
  font-size: 0.95rem;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 0.7;
}

.nav-icons a {
  color: var(--primary-dark);
  font-size: 1.3rem;
  transition: color 0.3s;
}

.nav-icons a:hover {
  color: var(--accent-purple);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  background:
    radial-gradient(
      circle at 20% 40%,
      var(--bg-gradient-top) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      var(--bg-gradient-bottom) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  position: relative;
  padding-bottom: 80px;
}

.hero-title {
  color: var(--primary-dark);
  line-height: 1.1;
}

.hero-title .fw-light {
  font-size: 4rem;
  font-weight: 300;
  display: block;
}

.hero-title .bold-text {
  font-size: 5rem;
  font-weight: 700;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #444;
  max-width: 90%;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero Image & Decorations */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.hero-img {
  border-radius: 200px; /* Pill shape */
  height: 600px;
  width: 450px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border: 12px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.deco-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.deco-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.deco-1 {
  width: 550px;
  height: 550px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-color: rgba(255, 255, 255, 0.6) transparent transparent
    rgba(255, 255, 255, 0.6);
}

/* Bottom Banner */
.hero-bottom-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 120px;
}

.hero-bottom-banner {
  position: absolute;
  bottom: -30px;
  left: -5%;
  width: 110%;
  height: 150px;
  background: linear-gradient(90deg, #8a2be2, #da70d6);
  transform: rotate(-3deg);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.banner-content {
  transform: rotate(3deg);
  width: 100%;
}

.btn-shop-now {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-shop-now:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.marquee-text {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* Categories Section */
.categories-section {
  background-color: #fafafa;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 3.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
}

.category-card {
  transition: all 0.4s ease;
  cursor: pointer;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-card:hover .card-overlay {
  opacity: 1;
}

.card-body {
  padding: 1.5rem 0.5rem 0.5rem;
}

.card-title {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title .fw-light {
    font-size: 3rem;
  }
  .hero-title .bold-text {
    font-size: 3.8rem;
  }
  .hero-img {
    height: 500px;
    width: 380px;
  }
}

@media (max-width: 768px) {
  .hero-title .fw-light {
    font-size: 2.5rem;
  }
  .hero-title .bold-text {
    font-size: 3.2rem;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .hero-img {
    height: 400px;
    width: 300px;
  }
  .hero-bottom-banner {
    transform: rotate(-2deg);
  }
  .section-title {
    font-size: 2.5rem;
  }
}
