:root {
    --primary-color: #C76B4F;
    --secondary-color: #4C6B4A;
    --light-color: #FDF8F1;
    --dark-color: #3A3A3A;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lora', serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.hero-section {
    background-color: var(--light-color);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 241, 0.7);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #b75e43;
    border-color: #b75e43;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    transition: var(--transition);
    border-radius: 0.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Custom spacing for fixed navbar */
main {
    padding-top: 76px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        min-height: 100vh;
    }
    
    .hero-section .btn {
        width: 100%;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeIn 1s ease-out forwards;
}

.hero-section p {
    animation-delay: 0.2s;
}

.hero-section .btn {
    animation-delay: 0.4s;
} 

/* Reset Bootstrap's blue border and background on focus/hover */
.accordion-button {
    background-color: #ffffff;
    color: #212529;
    font-weight: 500;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem; /* Restore smooth edges */
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Expanded state (clean white, green text) */
.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: #6b745c !important;
    box-shadow: none !important;
    border-color: #6b745c !important;
}

/* Hover state (subtle light gray, no blue) */
.accordion-button:hover,
.accordion-button:focus {
    background-color: #f8f9fa;
    color: #6b745c;
    border-color: #6b745c;
    outline: none !important;
    box-shadow: none !important;
}

/* Chevron color on expand (olive green tint) */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5) sepia(1) hue-rotate(60deg) saturate(3);
}

/* Accordion body content */
.accordion-body {
    background-color: #ffffff;
    color: #333333;
    border-top: 1px solid #dee2e6;
}

/* List inside content */
.list-group-item {
    background-color: transparent;
    border-color: #e1e1e1;
    color: #333333;
}

/* Accordion item spacing/border tweak */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
