/* =========================================
   117 REC
   MAIN STYLESHEET
========================================= */

:root {
    --black: #000000;
    --white: #ffffff;
    --grey: #111111;
    --light-grey: #888888;

    --border: rgba(255, 255, 255, 0.15);

    --font-display: "Oswald", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --header-height: 90px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================
   CURSOR
========================================= */

.cursor {
    position: fixed;

    width: 10px;
    height: 10px;

    background: var(--white);

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%, -50%);

    transition:
        width 0.25s ease,
        height 0.25s ease,
        opacity 0.25s ease;

    mix-blend-mode: difference;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: var(--header-height);

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    mix-blend-mode: difference;
}

.header-logo {
    font-family: var(--font-display);

    font-size: 1.8rem;

    font-weight: 500;

    letter-spacing: 0.05em;
}

.navigation {
    display: flex;

    gap: 2.2rem;

    align-items: center;
}

.navigation a {
    position: relative;

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}


/* =========================================
   MENU BUTTON
========================================= */

.menu-button {
    display: none;

    border: 0;

    background: transparent;

    width: 35px;

    height: 25px;

    cursor: pointer;

    flex-direction: column;

    justify-content: space-between;
}

.menu-button span {
    display: block;

    width: 100%;

    height: 1px;

    background: var(--white);
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    background: var(--black);

    z-index: 900;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;

    visibility: visible;
}

.mobile-menu nav {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 1.5rem;
}

.mobile-menu a {
    font-family: var(--font-display);

    font-size: clamp(2.5rem, 9vw, 5rem);

    text-transform: uppercase;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    height: 100vh;

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            #171717 0%,
            #050505 45%,
            #000000 100%
        );

    z-index: -2;
}

.hero-background::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.7)
        );
}

.hero-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    animation: heroReveal 1.4s ease forwards;
}

.hero-logo {
    width: min(380px, 55vw);

    height: auto;

    margin-bottom: 2.5rem;
}

.hero-tagline {
    font-family: var(--font-display);

    font-size: clamp(1rem, 2vw, 1.5rem);

    line-height: 1.25;

    letter-spacing: 0.14em;

    font-weight: 400;
}

.scroll-indicator {
    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    opacity: 0.65;

    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    font-size: 1.2rem;

    animation: arrowBounce 2s infinite;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 160px 5vw;
}

.section-header {
    margin-bottom: 80px;

    max-width: 700px;
}

.section-number {
    display: block;

    margin-bottom: 25px;

    font-size: 0.7rem;

    letter-spacing: 0.15em;

    color: var(--light-grey);
}

.section-header h2 {
    font-family: var(--font-display);

    font-size: clamp(4rem, 10vw, 9rem);

    line-height: 0.9;

    font-weight: 400;

    text-transform: uppercase;

    letter-spacing: -0.02em;
}

.section-header p {
    margin-top: 30px;

    color: var(--light-grey);

    font-size: 0.95rem;

    max-width: 400px;

    line-height: 1.6;
}


/* =========================================
   VIDEO GRID
========================================= */

.video-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 80px 30px;
}

.video-card {
    cursor: pointer;
}

.video-placeholder {
    aspect-ratio: 16 / 9;

    background:
        linear-gradient(
            135deg,
            #191919,
            #080808
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    transition:
        transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.video-placeholder span {
    font-size: 0.7rem;

    letter-spacing: 0.2em;

    color: #666;
}

.video-card:hover .video-placeholder {
    transform: scale(0.98);
}

.card-info {
    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    align-items: baseline;

    border-bottom: 1px solid var(--border);

    padding-bottom: 15px;
}

.card-info h3 {
    font-family: var(--font-display);

    font-size: 1.5rem;

    font-weight: 400;

    text-transform: uppercase;
}

.card-info p {
    color: var(--light-grey);

    font-size: 0.75rem;
}


/* =========================================
   PHOTOGRAPHY
========================================= */

.photo-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 2px;
}

.photo-card {
    cursor: pointer;

    overflow: hidden;
}

.photo-placeholder {
    aspect-ratio: 3 / 4;

    background:
        linear-gradient(
            135deg,
            #1a1a1a,
            #090909
        );

    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.photo-card:hover .photo-placeholder {
    transform: scale(1.05);
}

.photo-card h3,
.photo-card p {
    display: none;
}


/* =========================================
   SPONSORS
========================================= */

.sponsors-section {
    min-height: 70vh;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.sponsor-placeholder {
    min-height: 250px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: clamp(2rem, 5vw, 4rem);

    letter-spacing: 0.05em;

    color: #444;

    transition: color 0.4s ease;
}

.sponsor-placeholder:hover {
    color: var(--white);
}


/* =========================================
   CONTACT
========================================= */

.contact-layout {
    display: grid;

    grid-template-columns: 1fr 1.3fr;

    gap: 10vw;
}

.contact-information {
    display: flex;

    flex-direction: column;

    gap: 25px;

    font-size: 1rem;
}

.contact-information a {
    position: relative;

    width: fit-content;

    border-bottom: 1px solid var(--border);

    padding-bottom: 8px;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 40px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.form-group label {
    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: var(--light-grey);
}

.form-group input,
.form-group textarea {
    width: 100%;

    background: transparent;

    border: 0;

    border-bottom: 1px solid var(--border);

    color: var(--white);

    padding: 12px 0;

    outline: none;

    resize: vertical;

    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--white);
}

.submit-button {
    align-self: flex-start;

    padding: 16px 35px;

    border: 1px solid var(--white);

    background: transparent;

    color: var(--white);

    cursor: pointer;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 0.7rem;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.submit-button:hover {
    background: var(--white);

    color: var(--black);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 35px 5vw;

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--light-grey);

    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.footer a {
    color: var(--white);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes heroReveal {

    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}


/* =========================================
   SELECTION
========================================= */

::selection {
    background: var(--white);

    color: var(--black);
}
/* =========================================
   WEBSITE UNDER CONSTRUCTION
========================================= */

/* =========================================
   WEBSITE UNDER CONSTRUCTION
========================================= */

.construction-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    margin-bottom: 95px;

    animation: constructionReveal 1.2s ease forwards;
    animation-delay: 0.2s;

    opacity: 0;
}

.construction-label {
    font-family: var(--font-body);

    font-size: clamp(1.3rem, 2.2vw, 2rem);

    font-weight: 500;

    letter-spacing: 0.3em;

    text-transform: uppercase;

    color: var(--white);

    margin-bottom: 22px;
}

.construction-text {
    font-family: var(--font-body);

    font-size: clamp(1rem, 1.4vw, 1.25rem);

    letter-spacing: 0.08em;

    color: #999;

    font-weight: 400;
}


@keyframes constructionReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}