* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;

    background: #111111;

    color: white;

    min-height: 100vh;
}


/* =========================
   NAVIGATION
========================= */

nav {
    height: 90px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    color: white;

    text-decoration: none;

    font-size: 28px;

    font-weight: 900;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 45px;
}


.nav-links a {
    display: inline-block;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}


.nav-links a:hover {
    transform: translateX(-5px);

    opacity: 0.7;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding: 30px 8% 100px;
}


/* =========================
   BACK BUTTON
========================= */

.back-button {
    display: inline-block;

    color: white;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 80px;

    transition: 0.3s;
}


.back-button:hover {
    transform: translateX(-5px);

    opacity: 0.7;
}


/* =========================
   CONTACT CONTENT
========================= */

.contact-content {
    max-width: 1100px;
}


.small-title {
    font-size: 13px;

    letter-spacing: 4px;

    color: #777777;

    margin-bottom: 25px;
}


.contact-content h1 {
    font-size: clamp(70px, 10vw, 140px);

    line-height: 0.85;

    font-weight: 700;

    margin-bottom: 90px;
}


/* =========================
   CONTACT INFORMATION
========================= */

.contact-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    max-width: 1000px;
}


.contact-item {
    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 30px 0;

    border-top: 1px solid #333333;

    color: white;

    text-decoration: none;

    transition: 0.3s;
}


.contact-item:hover {
    transform: translateX(8px);
}


.contact-label {
    color: #666666;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 600;
}


.contact-value {
    color: #aaaaaa;

    font-size: 18px;

    transition: 0.3s;
}


.contact-item:hover .contact-value {
    color: white;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .nav-links {
        gap: 20px;
    }


    .contact-info {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 500px) {

    nav {
        padding: 0 5%;
    }


    .nav-links {
        gap: 12px;
    }


    .nav-links a {
        font-size: 11px;
    }


    .contact-page {
        padding: 20px 5% 60px;
    }


    .contact-content h1 {
        font-size: 70px;
    }

}
/* =========================
   PAGE TRANSITION
========================= */

body {
    opacity: 0;
    animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


body.page-exit {
    animation: pageFadeOut 0.4s ease forwards;
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}