﻿/* styles.css - Shared styles */
:root {
    --primary-color: #1e5aa7;
    --dark-bg: #222;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --shadow: 0 4px 12px rgba(0,0,0,0.15);
    --border-radius: 8px;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 150px; /* ← Change from 150px to 100px */
    padding: 0 24px;
    background-color: #222;
    box-sizing: border-box;
}

.logo {
    height: 75px; /* ← Slightly smaller logo */
    width: auto;
}

.header-left .logo {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

    .header-left .logo:hover {
        transform: scale(1.05);
    }

.header-nav {
    display: flex;
    gap: 35px;
}

    .header-nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .header-nav a:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .header-nav a.active {
            background-color: var(--primary-color);
        }

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
    padding: 24px;
    font-size: 0.9rem;
    margin-top: auto;
}

    .site-footer p {
        margin: 0;
        line-height: 1.6;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 16px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    section {
        width: 90% !important;
        padding: 20px !important;
    }

        section ul {
            grid-template-columns: 1fr;
        }
}
