/* General Styles */
body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: #faf3eb;
  color: #3e2723;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.logo-title,
.brand-wordmark,
.accent-script {
  font-family: 'Great Vibes', cursive;
  letter-spacing: 0.08em;
}

.brand-wordmark,
.accent-script {
  font-weight: 400;
  color: var(--coffee, #4B2E22);
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.brand-logo {
  max-height: 64px;
  width: auto;
}

/* Header */
header {
  background: linear-gradient(to bottom, #5d4037, #4e342e);
  color: #ffffff;
}

/* Discounts Section */
#discounts {
  background-color: #faf3eb;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#discounts .card {
  border: none;
  background-color: #ffffff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#discounts .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#coffeeFortuneForm {
  max-width: 600px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#coffeeFortuneForm .form-label {
  font-weight: bold;
  color: #5d4037;
}

#coffeeFortuneForm .btn {
  background-color: #5d4037;
  color: #ffffff;
  border: none;
  transition: background-color 0.3s ease;
}

#coffeeFortuneForm .btn:hover {
  background-color: #4e342e;
}
/* Fade-in animation */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

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


/* Subscribe Section */
#subscribe {
  background-color: #d7ccc8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.subscription-form {
  max-width: 600px;
  margin-top: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.subscription-form .form-label {
  font-weight: bold;
  color: #5d4037;
}

.subscription-form .form-control,
.subscription-form .form-select {
  border-radius: 5px;
  border: 1px solid #d7ccc8;
  padding: 10px;
}

.subscription-form .btn {
  background-color: #5d4037;
  color: #ffffff;
  border: none;
  transition: background-color 0.3s ease;
}

.subscription-form .btn:hover {
  background-color: #4e342e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#coming-soon {
  background-color: #faf3eb;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#coming-soon .card {
  border: none;
  background-color: #ffffff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#coming-soon .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#coming-soon .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5d4037;
}

#coming-soon .card-text {
  color: #4e342e;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-whatsapp .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-whatsapp .btn:hover {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .floating-whatsapp .btn {
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp .btn i {
    font-size: 1.5rem;
  }
}
