/* ===========================================
   RESET AND BASE STYLES
   =========================================== */
   body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F8F1F1; /* Light cream background */
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: #6C91BF; /* Muted blue for links */
    transition: color 0.3s ease;
}

a:hover {
    color: #005f5f; /* Darker hover color */
}

section {
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
    background-color: #B22222 !important; /* Deep red background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #D97730; /* Burnt orange accent */
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #F8F1F1 !important; /* Soft cream text */
    font-weight: bold;
    text-transform: uppercase;
}

.navbar .nav-link:hover {
    color: #FFD700 !important; /* Gold hover effect */
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(248, 241, 241, 0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-collapse {
    text-align: center;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #D97730, #B22222, #6C91BF);
    color: #F8F1F1;
    text-align: center;
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
}

.cta-buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.cta-buttons a:nth-child(1) {
    background-color: #D97730;
}

.cta-buttons a:nth-child(2) {
    background-color: #6C91BF;
}

.cta-buttons a:hover {
    transform: scale(1.1);
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background-color: #333333;
    color: #F8F1F1;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 2px solid #005f5f;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
}

footer ul li a {
    font-size: 0.9rem;
    color: #F8F1F1;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #D97730;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    footer ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
