:root {
  --primary: #d4afb9;
  --secondary: #d1cfe2;
}

body {
  font-family: "Georgia", serif;
  background-color: #f9fafb;
  overflow-x: hidden;
}

/* Logo Video Intro Styles */
#logoIntro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logoVideo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

#skipIntro {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#skipIntro:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Main Website Content - Initially Hidden */
#mainContent {
  display: none;
}

/* Navbar Styles */
.navbar {
    min-height: 100px;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .bi {
  color: #000 !important;
}

/* Mobile-specific navbar styles */
@media (max-width: 991.98px) {
  .navbar {
    min-height: 80px;
    padding: 0.5rem 0;
  }
  .navbar-logo {
        height: 60px !important;
    }

  .navbar-brand {
    position: absolute;
    /* margin-top: 50px; */
    /* top: 50%; */
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }

  .navbar.scrolled .navbar-brand {
    opacity: 0;
    visibility: hidden;
  }

  .navbar-toggler {
    position: relative;
    z-index: 100;
  }

  .navbar-collapse {
    /* margin-top: 80px; */
  }
}

/* Desktop navbar styles */
@media (min-width: 992px) {
  .navbar-brand {
    transition: all 0.3s ease;
  }
  .navbar-brand {
        display: flex;
        align-items: center;
        height: 100px;
    }
}

.nav-link {
  position: relative;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-link:hover {
  color: inherit;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #c99da8;
  border-color: #c99da8;
}

.divider {
  height: 4px;
  width: 80px;
  background-color: var(--primary);
  margin: 0 auto;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.product-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.gallery-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.founder-image {
  width: 250px;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.modal-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

/* Hero Carousel Styles */
.hero-carousel {
  height: 100vh;
}

.carousel-item {
  height: 100vh;
}

.carousel-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 10;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Hide carousel controls and indicators */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  display: none;
}

/* Prevent carousel from pausing on hover */
.carousel {
  pointer-events: none;
}

.carousel-inner {
  pointer-events: auto;
}

/* Logo styles */
.navbar-logo {
  height: 100px;
  transition: all 0.3s ease;
}

.logo-black {
  display: none;
}

.logo-transparent {
  display: block;
}

.navbar.scrolled .logo-black {
  display: block;
}

.navbar.scrolled .logo-transparent {
  display: none;
}

/* Cart Badge */
.badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

/* Quantity Selector */
.quantity-minus,
.quantity-plus {
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: bold;
}

.quantity-minus:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.quantity-display {
  min-width: 30px;
  text-align: center;
  font-weight: bold;
}

/* Action Buttons */
.add-to-cart,
.buy-now {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background-color: #c99da8;
  border-color: #c99da8;
}

.buy-now:hover {
  background-color: var(--primary);
  color: white;
}

/* Cart Page Styles */
.cart-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-summary {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

.empty-cart {
  text-align: center;
  padding: 3rem 0;
}

.empty-cart i {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1rem;
}

