:root {
  --primary: #6f4e37;
  --secondary: #c4a484;
  --light: #f5f5dc;
  --dark: #3a3a3a;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background-color: var(--light);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero-section {
  background-color: #fff;
  padding: 50px 0;
}

.carousel-item {
  min-height: 500px;
}

.carousel-caption {
  position: relative;
  left: 0;
  right: 0;
  padding: 80px 0;
  color: var(--dark);
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.carousel-caption h5 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 10px 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #5d4231;
  border-color: #5d4231;
}
.btn-primary:active {
  background-color: #452a19;
  border-color: #5d4231;
}

.coffee-card {
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 25px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coffee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coffee-card img {
  height: 200px;
  object-fit: cover;
}

.coffee-card .card-title {
  color: var(--primary);
  font-weight: 600;
}

.coffee-card .card-text {
  color: var(--dark);
}

.coffee-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

.about-section {
  background-color: white;
  padding: 80px 0;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonial-item {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary);
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--secondary);
}

.footer-contact li {
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--secondary);
  margin-right: 10px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

@media (max-width: 991px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .carousel-item {
    min-height: auto;
  }

  .carousel-caption {
    padding: 40px 0;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }
}
