:root {
    --primary-color: #198fd9;
    --secondary-color: #091b18;
    --text-color: #333;
    --bg-color: #fff;
    --footer-bg: #1e1e1e;
    --footer-text: #fff;
}

/* Local Font Declarations to prevent FOUT/Flicker */
@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora-latin-ext.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Lora', Georgia, "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .site-title, nav ul li a {
    font-family: 'Montserrat', "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

header {
    background: var(--bg-color);
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 60px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s linear;
}

@media (max-width: 768px) {
    .site-title {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 15px 0;
    }
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
}

footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 6% 40px;
    text-align: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

.footer-contact {
    margin: 20px 0;
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    color: var(--footer-text);
    font-size: 24px;
    margin: 0 15px;
}

.copyright {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.app-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-links img {
    height: 50px;
}

.container {
    max-width: 1144px;
    margin: 0 auto;
    padding: 80px 20px;
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    height: 60px;
    display: block;
    margin: 0 auto 10px;
}

.slider-container {
    margin: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: left;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}
