/* GLOBAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Space Mono', monospace;
}

/* NAVBAR */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #00000056 0%, #00000056 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

#navbar img {
    height: clamp(48px, 8vw, 80px);
    transition: transform 0.3s ease;
}

#navbar img:hover {
    transform: scale(1.05);
}

#main-nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    align-items: center;
}

#main-nav .nav-link {
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    text-decoration: none;
    opacity: 0.92;
    transition: color 0.2s, text-decoration 0.2s;
}

#main-nav .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
    opacity: 1;
}

#navbar-hamburger {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 2100;
    margin-left: 20px;
    display: none;
}

/* MOBILE NAV MENU */

@media (max-width: 800px) {

    #navbar {
        height: 60px;
        padding: 0 12px;
    }

    #navbar img {
        height: clamp(40px, 10vw, 48px);
    }

    #navbar-hamburger {
        display: block;
    }

    #main-nav ul {
        display: none;
        flex-direction: column;

        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);

        width: 100%;
        padding: 16px 0 8px 0;

        background: linear-gradient(180deg, #00000056 0%, #00000056 100%);
        backdrop-filter: blur(10px);

        opacity: 0;
        max-height: 0;
        overflow: hidden;
        z-index: 2000;

        text-align: center;
        align-items: center;

        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    #main-nav ul.show {
        display: flex;
        opacity: 1;
        max-height: 400px;
    }

    #main-nav .nav-link {
        font-size: 20px;
        padding: 12px 24px;
        text-align: center;
        width: 100%;
    }
}

/* HERO IMAGE */

#hero-image {
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.main-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 5;
    pointer-events: none;
}

.main-page h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.1;
}

/* PORTFOLIO */

#portfolio {
    width: 100%;
    background: #000000;
    padding-top: 40px;
    scroll-margin-top: 100px;
}

/* INFINITE LOGO ROTATOR */

.logo-slider {
    width: 100%; 
    background: #050505;
    overflow: hidden;
    position: relative;
    display: flex;
}

.logo-track {
    display: flex;
    width: max-content; 
    animation: scroll 40s linear infinite; 
}

.logo-track img[src*="bidstream"] {
    filter: invert(1) grayscale(100%) contrast(1000%);
}

.logo-track img[src*="bidstream"]:hover {
    filter: grayscale(0%);
}

.logo-track img {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(1000%);
}

.logo-track img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* STATS SECTION */

.stats-section {
    width: 100%;
    background: #000000;
    display: flex;
    flex-wrap: nowrap;
}

.stats-card {
    flex: 1;
    padding: 90px 32px;
    text-align: center;
}

.stats-card__number {
    font-family: 'Manrope', sans-serif;
    font-size: 7rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.stats-card__text {
    font-family: 'Space Mono', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
    }

    .stats-card {
        padding: 60px 32px;
        border-bottom: 1px solid #1a1a1a;
    }

    .stats-card:last-child {
        border-bottom: none;
    }
}

/* SECTORS */

#sectors {
    width: 100%;
    background: #000000;
    padding: 80px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectors-content {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin: 0 auto;
}

.sectors-description {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 40px;
}

.sectors-image {
    width: 100%;
    height: auto;
    display: block;
}

/* MANIFESTO */

#manifesto {
    width: 100%;
    padding: 40px 20px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    scroll-margin-top: 80px;
}

.manifesto-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.manifesto-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.manifesto-text {
    max-width: 800px;
    margin: 0 auto 25px auto;
    font-size: 1.2rem;
    line-height: 1.7;
    font-family: 'Space Mono', monospace;
    opacity: 0.9;
}

/* TEAM */

#team {
    width: 100%;
    padding: 120px 20px;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.team-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 60px;
}

.team-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    text-align: center;
}

.team-name {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.team-name:hover {
    opacity: 0.7;
}

.team-role {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

.team-school {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    margin-top: 5px;
    opacity: 0.7;
}

/* CONTACT SECTION */

#contact {
    width: 100%;
    padding: 80px 20px;
    background: #000;
    color: #fff;
    scroll-margin-top: 50px;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.contact-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-form .field {
    margin-bottom: 30px;
}

.contact-form label {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: 'Space Mono', monospace;
}

.contact-form textarea {
    min-height: 150px;
}

/* DIVIDER */
.form-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* SEND */
.send-btn {
    padding: 14px 28px;
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    border-radius: 12px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    opacity: 0.8;
}

.send-status {
    margin-top: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    opacity: 0.7;
}
