@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-dark: #54100E;
  --primary-light: #CC8A6B;
  --accent-gold: #EFA721;
  --light-bg: #FFF9F5;
  --text-dark: #2A120F;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  background-image: url('https://img.freepik.com/free-vector/coffee-beans-pattern-background_53876-116778.jpg');
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-size: 400px;
  /* background-opacity: 0.05; */
}

.text-primary-dark{
  color: var(--primary-dark);
}

.brand-navbar {
  background-color: white;
  box-shadow: 0 2px 20px rgba(86, 16, 14, 0.1);
}

.navbar-brand {
  font-weight: 600;
  color: var(--primary-dark) !important;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-link:hover:after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(rgba(84, 16, 14, 0.8), rgba(84, 16, 14, 0.8)),
    url('https://img.freepik.com/free-vector/realistic-coffee-background-with-drawings_79603-603.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: -50px;
}

.booking-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(84, 16, 14, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: none;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold));
}

.form-section {
  padding: 40px;
}

.section-title {
  color: var(--primary-dark);
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.form-label {
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 1px solid #e0d0c8;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(204, 138, 107, 0.25);
}

.btn-primary {
  background-color: var(--primary-dark);
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(204, 138, 107, 0.4);
}

.combo-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  /* margin-bottom: 15px; */
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(84, 16, 14, 0.1);
}

.combo-card .card-header {
  background-color: var(--primary-dark);
  color: white;
  font-weight: 500;
  border: none;
}

.form-check-input:checked {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}

.location-badge {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
  margin-right: 10px;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(239, 167, 33, 0.2);
}

footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 30px 0;
  margin-top: 80px;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

.coffee-icon {
  color: var(--accent-gold);
  margin-right: 10px;
}

.animate-pop {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}