

:root {
    --patriotic-blue: #002855; 
    --patriotic-red: #BF0D3E;
    --accent-gold: #B3995D;
    --text-dark: #333333;
    --bg-light: #F4F4F4;
    --off-white: #f8f9fa;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--patriotic-blue);
}

.bg-dark {
    background-color: var(--patriotic-blue) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Button Overrides */
.btn-primary {
    background-color: var(--patriotic-blue);
    border-color: var(--patriotic-blue);
}

.btn-primary:hover {
    background-color: #001f42;
    border-color: #001f42;
}

.btn-success { /* Used for Donate/GoFundMe */
    background-color: var(--patriotic-red);
    border-color: var(--patriotic-red);
}

.btn-success:hover {
    background-color: #9e0b33;
    border-color: #9e0b33;
}

/* Hero Section */
@keyframes wave-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section {
    background: linear-gradient(rgba(0, 40, 85, 0.7), rgba(0, 40, 85, 0.7)), url('images/waving-flag.png') no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: wave-animation 30s infinite linear;
    color: white;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Image Animations */
#gallery img, #about img, #current-state img {
    transition: transform 0.3s ease;
}

#gallery img:hover, #about img:hover, #current-state img:hover {
    transform: scale(1.02);
}

#flags img {
    max-height: 100px;
    margin: 0 auto;
    display: block;
}

#gallery img {
    height: 500px;
    object-fit: cover;
    border-radius: .5rem;
}

#imageCarousel, #renovationCarousel {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: .5rem;
}

.carousel-caption {
    background-color: rgba(0, 40, 85, 0.8);
    border-radius: .5rem;
    font-family: 'Roboto', sans-serif;
}

footer {
    background-color: var(--patriotic-blue) !important;
}
