
<!-- =================================================================
     FILE: style.css
     This file will contain all the styles for your website.
     ================================================================= -->
/* --- Global Styles & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.header-container { /* Using a more specific name to avoid conflicts */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Header & Navigation Component --- */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo a {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #f0f0f0;
    color: #000;
}

.nav-button-give {
    background-color: #28a745;
    color: #fff;
}

.nav-button-give:hover {
    background-color: #218838;
    color: #fff;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 15px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    display: block; /* Show on hover */
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    text-align: left;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive styles for tablet and mobile */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide the nav links */
    }
    .nav-toggle {
        display: block; /* Show the hamburger button */
    }
}

