@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
  --primary-color: #C9A66B;
  --secondary-color: #A4B494;
  --bg-light: #F5F2ED;
  --text-dark: #2C3338;
  --border-color: rgba(0,0,0,0.1);
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding-top: 80px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.search-form {
  position: relative;
  max-width: 300px;
}

.search-form input {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 15px;
  width: 100%;
  background-color: white;
}

.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: var(--secondary-color);
}

.navbar {
  border-bottom: 1px solid var(--border-color);
  background-color: white !important;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Enhanced Navigation Styles */
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.nav-item {
  flex: 1;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.cart-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-btn:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.snipcart-items-count {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  line-height: 1;
}

.snipcart-total-price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.footer {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-info-section .card {
  transition: transform 0.3s ease;
  background: linear-gradient(to bottom right, #fff, var(--bg-light));
}

.contact-info-section .card:hover {
  transform: translateY(-5px);
}

.contact-form-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 166, 107, 0.25);
}

.contact-form-section .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 166, 107, 0.25);
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.accordion-button:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 166, 107, 0.25);
}

.footer {
  background-color: white;
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.playfair {
  font-family: 'Playfair Display', serif;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color) !important;
}

.cookie-consent {
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent a {
  color: var(--primary-color);
  text-decoration: none;
}

.cookie-consent .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.cookie-consent .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Enhanced Carousel Styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

.carousel {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.carousel-inner {
  position: relative;
}

.carousel-item {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 60vh;
  min-height: 500px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.carousel-item:hover img {
  filter: brightness(1);
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.carousel-caption h1,
.carousel-caption h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInScale 1s ease-out 0.3s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-caption .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.carousel-caption .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.carousel-caption .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Carousel Indicators */
.carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.3);
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 25px;
  height: 25px;
  background-size: 25px 25px;
  filter: invert(1);
  opacity: 0.7;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .carousel-item {
    height: 50vh;
    min-height: 400px;
  }
  
  .carousel-caption {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 2rem;
  }
  
  .carousel-caption .lead {
    font-size: 1.1rem;
  }
  
  .carousel-caption .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 45vh;
    min-height: 350px;
  }
  
  .carousel-caption {
    padding: 1.5rem 1rem;
  }
  
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.8rem;
  }
  
  .carousel-caption .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .carousel-caption .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .nav-item {
    flex: none;
    width: 100%;
    margin: 0.25rem 0;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  
  .cart-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
  
  .snipcart-total-price {
    text-align: center;
    width: 100%;
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
  
  .cart-btn {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}
