@font-face {
    font-family: "BC Alphapipe RB Regular";
    src: url("fonts/700249608338e4ee5f80d2dc4f35430c.eot");
    src: url("fonts/700249608338e4ee5f80d2dc4f35430c.eot?#iefix") format("embedded-opentype"),
         url("fonts/700249608338e4ee5f80d2dc4f35430c.woff2") format("woff2"),
         url("fonts/700249608338e4ee5f80d2dc4f35430c.woff") format("woff"),
         url("fonts/700249608338e4ee5f80d2dc4f35430c.ttf") format("truetype"),
         url("fonts/700249608338e4ee5f80d2dc4f35430c.svg#BC Alphapipe RB Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "BC Alphapipe RB Regular", Arial, sans-serif;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(ellipse at center, #000a0d 0%, #00090e 100%);
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10vw;
    width: 100%;
}

.logo {
    text-align: right;
    padding: 2rem;
}

.logo-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.for {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #bbaa8d;
    opacity: 0.8;
    text-transform: lowercase;
    padding-top: 0.5rem;
}

.legendary {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #bbaa8d;
    margin: 0;
    line-height: 0.9;
    text-transform: capitalize;
}

.logo-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.people, .moments {
    font-size: clamp(0.9rem, 1.8vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #bbaa8d;
    opacity: 0.7;
    text-transform: lowercase;
    line-height: 1.2;
}

.disciplines {
    padding: 2rem;
    padding-left: 3rem;
    font-size: clamp(0.6rem, 1.2vw, 0.85rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #bbaa8d;
    opacity: 0.6;
    text-transform: lowercase;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        padding-right: 0;
    }
    
    .logo {
        text-align: center;
    }
    
    .logo-top {
        justify-content: center;
    }
    
    .logo-bottom {
        align-items: center;
    }
    
    .disciplines {
        text-align: center;
        padding-left: 2rem;
        font-size: 0.6rem;
    }
}
