@font-face {
    font-family: 'StretchPro';
    src: url('assets/font/stretchpro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'StretchPro', sans-serif;
    background: #0055ff;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: auto;
}

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

nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
}

.hero {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: 70px;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h1 span {
    display: block;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    letter-spacing: 1px;
}

.hero-image {
    min-width: 0;
}

.hero-image img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hero-text h1 {
        font-size: 50px;
    }
    .hero-image img {
        max-width: 80%;
        max-height: 40vh;
    }
}