﻿/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fb;
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

/* Header */
header {
    position: relative;
    z-index: 1000;
    background-color: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e6e6e6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

/* NAVIGATION */
/* Active page underline */
nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background-color: #00a4fb;
    border-radius: 2px;
}

nav a:hover {
    color: #00a4fb;
}

/* Navigation wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* Nav menu default (desktop) */
.nav-menu {
    display: flex;
}

    .nav-menu a {
        font-family: 'Exo 2', sans-serif;
        color: #333;
        text-decoration: none;
        margin-left: 25px;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.5px;
        position: relative;
    }

/* Mobile styles */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
        margin-left: 20px;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        padding: 15px 0;
        z-index: 2000;
        display: none;
    }

        .nav-menu a {
            margin: 10px 20px;
        }

        .nav-menu.show {
            display: flex;
        }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url("../img/hero.webp");
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

    /* Dark overlay for readability */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    /* Ensure text sits above overlay */
    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-family: 'Exo 2', sans-serif;
        font-size: 48px;
        margin-bottom: 10px;
        border-bottom: 1px solid #00a4fb;
        display: inline-block;
    }

    .hero h2 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 12px;
        color: #fff;
    }

.location {
    font-size: 16px;
    opacity: 0.7;
}

/* Mobile typography adjustments */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 17px;
    }

    .location {
        font-size: 14px;
    }
}

/* Page Header */
.page-header {
    background-color: #f4f8fc;
    padding: 70px 0;
    text-align: center;
}

    .page-header h1 {
        font-family: 'Exo 2', sans-serif;
        font-size: 36px;
    }

/* Content */
.content {
    padding: 40px 0;
    background-color: #ffffff;
}

    .content p {
        margin-bottom: 20px;
        font-size: 18px;
    }

/* Contact Box */
.contact-box {
    background-color: #f2f9ff;
    padding: 30px;
    border-left: 4px solid #00a4fb;
    border-radius: 6px;
    margin-top: 35px;
}

    .contact-box h3 {
        font-family: 'Exo 2', sans-serif;
        margin-bottom: 15px;
    }

/* Links */
/*a {
    color: #00a4fb;
}*/

    a:hover {
        opacity: 0.8;
    }

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid #e6e6e6;
    padding: 35px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

    .footer-content strong {
        font-family: 'Exo 2', sans-serif;
        font-weight: 600;
        color: #222;
    }
