/* Base Styles */
:root {
  --coffee-dark: #3C2A21;
  --coffee-medium: #6D4C3D;
  --coffee-light: #B85C38;
  --coffee-cream: #E7D7C1;
  --coffee-bg: #FFF8F0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: var(--coffee-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

/* Background Colors */
.bg-coffee-dark {
  background-color: var(--coffee-dark);
}

.bg-coffee-medium {
  background-color: var(--coffee-medium);
}

.bg-coffee-light {
  background-color: var(--coffee-light);
}

.bg-coffee-cream {
  background-color: var(--coffee-cream);
}

/* Text Colors */
.text-coffee-dark {
  color: var(--coffee-dark);
}

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

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

/* Button Overrides */
.btn-primary {
  background-color: var(--coffee-light);
  border-color: var(--coffee-light);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #a34e2f;
  border-color: #a34e2f;
}

.btn-outline-primary {
  color: var(--coffee-light);
  border-color: var(--coffee-light);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--coffee-light);
  border-color: var(--coffee-light);
}

/* Header & Navbar */
.navbar-brand img {
  max-height: 60px;
  width: auto;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--coffee-cream);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/background.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  color: white;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(231, 215, 193, 0.9), rgba(231, 215, 193, 0.9)), url('images/header-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}

/* Countdown Timer */
.countdown-container {
  max-width: 600px;
  margin: 0 auto;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
}

.countdown-item h3 {
  font-size: 2.5rem;
  margin: 0;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

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

/* Footer */
footer {
  background-color: var(--coffee-medium);
  color: white;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

footer a, footer a:hover{
  color: white;
  text-decoration: none;
}

footer .social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

footer .social-links a:hover {
  background-color: var(--coffee-light);
}

/* Contact Form */
.contact-form .form-control {
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
}

.contact-form .form-control:focus {
  border-color: var(--coffee-light);
  box-shadow: 0 0 0 0.2rem rgba(184, 92, 56, 0.25);
}

.info-item .icon {
  width: 40px;
  text-align: center;
  font-size: 1.2rem;
}

.social-icon {
  color: var(--coffee-medium);
  background-color: rgba(109, 76, 61, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  color: white;
  background-color: var(--coffee-medium);
}

/* Mission List */
.mission-list {
  padding-left: 1.5rem;
}

.mission-list li {
  margin-bottom: 10px;
  position: relative;
}

.mission-list li::before {
  content: "☕";
  position: absolute;
  left: -1.5rem;
  color: var(--coffee-light);
}

/* Team Section */
.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

/* Vendor Card */
.vendor-card {
  margin-bottom: 30px;
}

.vendor-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .countdown-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .countdown-item h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
}
