:root {
  --primary-brown: #8b4513;
  --secondary-brown: #a0522d;
  --light-brown: #d2b48c;
  --cream: #f5f5dc;
  --off-white: #fff8dc;
  --dark-green: #2f4f2f;
  --text-dark: #2c1810;
  --text-light: #8b7355;
  --font-brand: "Clicker Script", cursive;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;
  --section-padding: 80px 0;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-brown);
  border-radius: 2px;
}
.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent !important;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar-collapse {
  background: white !important;
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent !important;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
  }
}
.brand-text {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  text-decoration: none;
}
.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-brown) !important;
}
.btn-signin,
.btn-register {
  border: 2px solid var(--primary-brown);
  border-radius: 25px;
  padding: 0.5rem 1.5rem !important;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 80px 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 69, 19, 0.2);
}
.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.btn-hero {
  background: var(--primary-brown);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}
.btn-hero:hover {
  background: var(--secondary-brown);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.discover-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
  z-index: 1;
}
.discover-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.products-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}
.filter-bar {
  margin-bottom: 3rem;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: white;
  border: 2px solid var(--light-brown);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-brown);
  border-color: var(--primary-brown);
  color: white;
  transform: translateY(-2px);
}
.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.product-image {
  height: 200px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-content {
  padding: 1.5rem;
}
.product-name {
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
}
.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}
.btn-order {
  background: var(--primary-brown);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-order:hover {
  background: var(--secondary-brown);
  transform: translateY(-2px);
}
.usp-section {
  padding: var(--section-padding);
  background: var(--cream);
}
.usp-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
}
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.usp-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.usp-icon i {
  font-size: 2rem;
  color: white;
}
.usp-card:hover .usp-icon {
  background: var(--secondary-brown);
  transform: scale(1.1);
}
.usp-title {
  color: var(--primary-brown);
  margin-bottom: 1rem;
}
.usp-text {
  color: var(--text-light);
}
.testimonials-section {
  padding: var(--section-padding);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 69, 19, 0.3);
}
.testimonials-section .section-title {
  color: white;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
}
.testimonial-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.testimonial-image {
  flex-shrink: 0;
}
.testimonial-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.testimonial-text {
  flex: 1;
}
.quote-icon {
  color: var(--primary-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-text p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-name {
  color: var(--primary-brown);
  font-weight: 600;
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-brown);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev {
  left: -25px;
}
.carousel-control-next {
  right: -25px;
}
.footer-section {
  background: var(--text-dark);
  color: white;
}
.subscribe-section {
  background: var(--primary-brown);
  padding: 3rem 0;
}
.subscribe-title {
  color: white;
  margin-bottom: 1rem;
}
.subscribe-text {
  color: var(--cream);
  margin-bottom: 2rem;
}
.subscribe-form .input-group {
  max-width: 400px;
  margin: 0 auto;
}
.subscribe-form .form-control {
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 0.75rem 1.5rem;
}
.subscribe-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 0.75rem 1.5rem;
}
.main-footer {
  padding: 3rem 0;
}
.footer-brand .brand-text {
  color: var(--light-brown);
  font-size: 1.8rem;
}
.footer-description {
  color: var(--cream);
  margin-top: 1rem;
}
.footer-title {
  color: var(--light-brown);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.contact-item i {
  color: var(--primary-brown);
  width: 20px;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-brown);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--secondary-brown);
  transform: translateY(-2px);
  color: white;
}
.bottom-footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
  border-top: 1px solid var(--primary-brown);
}
.copyright-text {
  color: var(--cream);
  margin: 0;
  font-size: 0.9rem;
}
.footer-link {
  color: var(--light-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--primary-brown);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  .filter-btn {
    width: 200px;
  }
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-image {
    margin-bottom: 1rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  .btn-signin,
  .btn-register {
    margin: 0.25rem 0;
    display: inline-block;
  }
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .product-content {
    padding: 1rem;
  }
  .usp-card {
    padding: 1.5rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}
html {
  scroll-behavior: smooth;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
.text-coffee {
  color: var(--primary-brown);
}
.bg-coffee {
  background-color: var(--primary-brown);
}
.border-coffee {
  border-color: var(--primary-brown);
}
.shadow-coffee {
  box-shadow: var(--box-shadow);
}
