:root {
    --primary-color: #2C5530;    /* Deep forest green */
    --secondary-color: #8B7355;  /* Warm brown */
    --accent-color: #D4AF37;     /* Gold */
    --light-color: #F5F5DC;      /* Beige */
    --dark-color: #2C2C2C;       /* Dark gray */
    --text-color: #333333;
    --background-color: #FFFFFF;
    --overlay-color: rgba(44, 85, 48, 0.8);
    --bs-primary: #f5f5dc; /* Pastel beige */
}

/* Base Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: rgba(44, 85, 48, 0.75);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.navbar-brand {
    color: var(--light-color) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--light-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Cards */
.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--background-color);
    border: none;
}

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

/* Buttons */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    background-color: #f5f5dc !important;
    border-color: #f5f5dc !important;
    color: #2C2C2C !important;
}

.btn-primary:hover {
    background-color: #e5e5c4 !important;
    border-color: #e5e5c4 !important;
    color: #2C2C2C !important;
}

.text-primary {
    color: #f5f5dc !important;
}

.bg-primary {
    background-color: #f5f5dc !important;
    color: #2C2C2C !important;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0;
    margin-top: 4rem;
}

/* Utility Classes */
.section-padding {
    padding: 2.5rem 0;
}

.rounded-image {
    border-radius: 15px;
    overflow: hidden;
}

.overlay-text {
    background-color: var(--overlay-color);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

/* Custom Modal Header for Construction Notice */
.construction-modal-header {
    background-color: #c0392b !important; /* Strong red */
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 1.5rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

.bg-pastel-beige {
    background-color: #e4d6b7 !important;
    color: #2C2C2C !important;
}

h2 {
    color: rgba(44, 85, 48, 0.85) !important;
}

h3 {
    color: rgba(44, 85, 48, 0.85) !important;
} 