* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0b0c0b;
    color: #eeeeE5;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(11, 12, 11, 0.94);
    border-bottom: 1px solid rgba(220, 245, 50, 0.2);
    z-index: 10;
}

.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.logo span {
    color: #e1ff35;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav a:hover {
    color: #e1ff35;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 8%;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background:
        linear-gradient(120deg, transparent 48%, #8f1c1c 49%, transparent 50%),
        linear-gradient(30deg, transparent 49%, #555950 49.5%, transparent 50%),
        repeating-linear-gradient(25deg, transparent 0 100px, #62655d22 101px 103px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.small-title,
.section-title {
    color: #e1ff35;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 25px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(55px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.hero h1 span {
    color: #e1ff35;
}

.line {
    width: 330px;
    max-width: 80%;
    height: 1px;
    background: #8f1c1c;
}

.intro {
    color: #aaa;
    margin-top: 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.ode {
    display: grid;
    grid-template-columns: 55% 45%;
    background: #efefe8;
    color: #111;
}

.photo {
    min-height: 700px;
}

.photo img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    display: block;
}

.text {
    align-self: center;
    padding: 80px 9%;
}

.ode .section-title {
    color: #4e5718;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(45px, 6vw, 85px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin: 30px 0;
}

.ode h2 span {
    color: #4e5718;
}

.text p:not(.section-title) {
    color: #45473f;
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
}

.leuven {
    padding: 130px 8%;
    background: #10120f;
}

.leuven-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    align-items: end;
    margin-top: 50px;
}

.leuven-content p {
    color: #aaa;
    line-height: 1.8;
    max-width: 500px;
}

.leuven-content h2 span {
    color: #e1ff35;
}

.map {
    height: 480px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(225, 255, 53, 0.2);
    background:
        repeating-linear-gradient(35deg, transparent 0 85px, #777b7117 86px 89px),
        repeating-linear-gradient(125deg, transparent 0 110px, #777b7110 111px 114px);
}

.river {
    position: absolute;
    width: 15px;
    border-radius: 20px;
    background: #8f1c1c;
}

.river-one {
    height: 125%;
    left: 48%;
    top: -10%;
    transform: rotate(10deg);
}

.river-two {
    height: 100%;
    left: 60%;
    top: -5%;
    transform: rotate(-30deg);
}

.road {
    position: absolute;
    height: 4px;
    background: #aaa99d25;
}

.road-one {
    width: 80%;
    top: 22%;
    left: 7%;
    transform: rotate(15deg);
}

.road-two {
    width: 75%;
    top: 65%;
    left: 13%;
    transform: rotate(-18deg);
}

.road-three {
    width: 60%;
    top: 43%;
    left: 15%;
    transform: rotate(48deg);
}

.map-label {
    position: absolute;
    color: #e1ff35;
    font-family: Georgia, "Times New Roman", serif;
}

.leuven-label {
    left: 43%;
    top: 68%;
    font-size: 30px;
}

.dijle-label {
    right: 20%;
    top: 25%;
    transform: rotate(60deg);
}

.coming-soon {
    padding: 130px 8%;
    display: flex;
    align-items: center;
    gap: 10%;
    border-top: 1px solid rgba(225, 255, 53, 0.15);
}

.number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(130px, 20vw, 260px);
    color: #e1ff35;
    line-height: 0.6;
}

.coming-text {
    max-width: 650px;
}

.coming-text h2 {
    margin: 25px 0;
}

.coming-text p:last-child {
    color: #aaa;
    line-height: 1.8;
}

.contact {
    padding: 130px 8%;
    background: #0f100e;
    border-top: 1px solid rgba(225, 255, 53, 0.15);
}

.contact h2 span {
    color: #e1ff35;
}

footer {
    padding: 25px 5%;
    border-top: 1px solid rgba(225, 255, 53, 0.15);
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 10px;
    letter-spacing: 0.12em;
}

footer div:first-child {
    color: #e1ff35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

@media (max-width: 850px) {
    nav {
        display: none;
    }

    header {
        height: 65px;
    }

    .hero {
        padding: 90px 7%;
    }

    .ode {
        grid-template-columns: 1fr;
    }

    .photo,
    .photo img {
        min-height: 500px;
    }

    .text {
        padding: 70px 7%;
    }

    .leuven {
        padding: 90px 7%;
    }

    .leuven-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map {
        height: 380px;
    }

    .coming-soon {
        padding: 90px 7%;
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .contact {
        padding: 90px 7%;
    }

    footer {
        flex-direction: column;
        gap: 15px;
    }
}
