@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&family=DM+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'League Spartan', sans-serif;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 90px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #1e5a8e;
    font-weight: bold;
    font-size: 16px;
    font-family: Impact, sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1e5a8e;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: calc(100vh - 100px);
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'League Spartan', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }

    .logo-container img {
        height: 70px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo-container img {
        height: 60px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 13px;
    }

    .hero {
        height: calc(100vh - 110px);
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .logo-container img {
        height: 50px;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
