:root {
    --primary-coffee: #4b3621;
    --secondary-coffee: #c89d7c;
    --accent-gold: #d4af37;
    --light-bg: #fdfaf7;
    --dark-text: #2a211a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    scroll-behavior: smooth;
}

/* Navbar Style */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(42, 33, 26, 0.95) !important;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Card Styling */
.coffee-card {
    border: none;
    border-radius: 24px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 54, 33, 0.1);
}

.btn-primary-coffee {
    background-color: var(--primary-coffee);
    color: #fff;
    border-radius: 12px;
    padding: 12px 25px;
    border: none;
    font-weight: 600;
}

.btn-primary-coffee:hover {
    background-color: var(--dark-text);
    color: #fff;
}

.badge-status {
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Form Styling */
.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #e0d5cd;
}

.form-control:focus {
    border-color: var(--secondary-coffee);
    box-shadow: 0 0 0 0.25rem rgba(200, 157, 124, 0.25);
}