/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e31e24;
    --bangladesh-green: #006a4e;
    --delta-green: #0d7a5f;
    --accent-green: #00d084;
    --accent-purple: #6a1b9a;
    --white: #ffffff;
    --light-green: #e6f4f1;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --black: #1a1a1a;
    --text-dark: #222222;
    --text-muted: #666666;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

a {
    transition: all 0.3s ease;
}

/* Header Styles - Now handled by inline styles in header.html partial */
/* Keeping gradient-stripe class here */

.gradient-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--bangladesh-green) 0%, var(--primary-red) 100%);
}

/* Footer Styles */
footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-icon {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-family: 'Sora', sans-serif;
}

.footer-green-bar {
    height: 6px;
    background: var(--bangladesh-green);
}

.footer-red-bar {
    height: 6px;
    background: var(--primary-red);
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    footer {
        padding: 3rem 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
