@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f0f0f0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(to right, #FFD700, #FFF5CC);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #ff1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff1a1a;
}

.nav-links a.active {
    color: #ff1a1a;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D40511 !important;
}

.logout-btn:hover {
    color: #ff1a1a !important;
}


.main-content {
    max-width: 900px;
    margin: 50px auto 0 auto;
    padding: 0 20px 40px 20px;
}
.about-section h1 {
    color: #E60000;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.about-section h2 {
    color: #222;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1.2rem;
}
.about-section hr {
    border: none;
    border-top: 3px solid #E60000;
    width: 60px;
    margin: 18px 0 18px 0;
}
.about-section p {
    font-size: 1.13rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

.stats-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-card {
    background: #fff8e1;
    border: 2px solid #FFCC00;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(230,0,0,0.07);
    padding: 32px 38px;
    min-width: 220px;
    text-align: center;
    margin-bottom: 20px;
    transition: box-shadow 0.2s;
}
.stat-card:hover {
    box-shadow: 0 4px 16px rgba(230,0,0,0.13);
}
.stat-number {
    font-size: 2.1rem;
    font-weight: bold;
    color: #E60000;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 1.08rem;
    color: #333;
}

@media (max-width: 700px) {
    .main-content {
        margin-top: 20px;
    }
    .stats-section {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 18px 10px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .main-content {
        padding: 0 40px 40px 40px;
    }
}

@media (max-width: 992px) {
    .about-section h1 {
        font-size: 2.2rem;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    .stat-card {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .main-content {
        margin-top: 120px;
        padding: 0 20px 40px 20px;
    }

    .about-section h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.2rem;
    }

    .about-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stats-section {
        gap: 20px;
    }

    .stat-card {
        padding: 25px 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .main-content {
        margin-top: 160px;
        padding: 0 15px 30px 15px;
    }

    .about-section h1 {
        font-size: 1.8rem;
    }

    .about-section h2 {
        font-size: 1.1rem;
    }

    .about-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stats-section {
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
        min-width: 100%;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .navbar {
        position: static;
    }

    .main-content {
        margin-top: 0;
    }

    .stat-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 