@import url('variables.css');

/* CSS Reset and Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 400;
}

a { text-decoration: none; color: var(--lupe-blue); transition: color 0.3s; }
a:hover { color: var(--lupe-yellow); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilities */
.text-yellow { color: var(--lupe-yellow); }
.text-blue { color: var(--lupe-blue); }
.bg-blue { background-color: var(--lupe-blue); color: var(--white); }
.bg-yellow { background-color: var(--lupe-yellow); color: var(--dark-gray); }

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.btn-yellow { background-color: var(--lupe-yellow); color: var(--lupe-blue); font-weight: bold; }
.btn-blue { background-color: var(--lupe-blue); color: var(--white); }
.btn-outline { border: 2px solid var(--lupe-blue); color: var(--lupe-blue); background: transparent; }
.btn-outline:hover { background: var(--lupe-blue); color: var(--white); }

#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header & Nav */
.site-header {
    background-color: var(--lupe-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.logo-text { font-size: 2.5rem; margin: 0; color: var(--white); }

.main-nav ul { list-style: none; display: flex; gap: 1.5rem; }
.main-nav a { 
    font-family: var(--font-heading); 
    font-size: 1.6rem; 
    text-transform: uppercase;
    color: var(--white); 
}
.main-nav a.active, .main-nav a:hover { color: var(--lupe-yellow); }

.mobile-menu-btn {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px;
}
.mobile-menu-btn .bar { display: block; width: 25px; height: 3px; background-color: var(--white); transition: 0.3s; }

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(28,53,94,0.9) 0%, rgba(28,53,94,0.4) 100%);
}
.hero-content {
    position: relative; z-index: 1; max-width: 600px; color: var(--white);
    padding: 2rem 0;
}
.hero h1 { font-size: 4.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

/* Sections */
section { padding: var(--section-padding); }
.section-title { text-align: center; font-size: 3rem; color: var(--lupe-blue); margin-bottom: 3rem; }
.section-title::after {
    content: ''; display: block; width: 80px; height: 4px;
    background-color: var(--lupe-yellow); margin: 0.5rem auto 0;
}

/* Footer Refactored */
.site-footer { background-color: #202020; color: var(--white); padding: 4rem 0 2rem; text-transform: uppercase; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-logo { height: 60px; margin-bottom: 2rem; }
.footer-nav { list-style: none; display: flex; gap: 2rem; align-items: center; }
.footer-nav a { color: white; font-family: var(--font-heading); font-size: 1.5rem; text-transform: uppercase; }
.footer-right { display: flex; gap: 1.5rem; align-items: center; margin-top: 1rem; }
.footer-right a { color: white; font-size: 1.2rem; font-weight: 500; text-decoration: none; }
.footer-right a:hover { text-decoration: underline; color: var(--lupe-yellow); }
.footer-address { margin-top: 4rem; color: #eee; font-size: 1.1rem; text-align: center; }
.footer-address p { margin-bottom: 0.2rem; }
.footer-address .address-title { margin-bottom: 0.5rem; color: white; font-weight: bold; }
.footer-address a { color: #eee; text-decoration: underline; }
.footer-bottom { margin-top: 4rem; text-align: center; }
.paid-for-box { display: inline-block; border: 2px solid white; padding: 0.5rem 1rem; }
.paid-for-box p { margin: 0; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; font-size: 1.2rem; }

.mobile-only-donate { display: none; }

/* Responsive */
@media (max-width: 992px) {
    .donate-btn { display: none; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--lupe-blue); padding: 1.5rem; box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 3rem; }
    .mobile-only-donate { display: block; margin-top: 1rem; }
    
    /* Mobile Footer Centering */
    .footer-top { flex-direction: column; align-items: center; text-align: center; justify-content: center;}
    .footer-left { display: flex; flex-direction: column; align-items: center; }
    .footer-nav { flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
    .footer-right { justify-content: center; margin-top: 1rem; }
}
