html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: black;
    color: white;
}

.hero {
    height: 100vh;
    background-image: url("../assets/her.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.logo {
    position: absolute;
    top: 35px;
    left: 45px;
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 600;
    z-index: 2;
}

.contact {
    position: absolute;
    top: 30px;
    right: 45px;
    z-index: 2;
}

.contact button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background: white;
    color: black;
}

.email {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 15px;

    background: white;
    color: black;
    padding: 15px 20px;
    font-size: 13px;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(-20px);
    transition: 0.3s ease;
}

.contact-btn:hover + .email {
    opacity: 1;
    transform: translateX(0);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 600;
    letter-spacing: 12px;
}

.scroll-arrow {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow span {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: arrowMove 1.8s infinite;
}

@keyframes arrowMove {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px,-5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px,5px);
    }
}

.about {
    min-height: 100vh;
    background: #050505;
    display: flex;
    align-items: center;
    gap: 8vw;
    padding: 120px 10%;
}

.about-image {
    width: 45%;
    max-width: 600px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    max-width: 520px;
}

.section-label {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 20px;
}

.about-line {
    width: 50px;
    height: 1px;
    background: white;
    margin-top: 40px;
    margin-bottom: 20px;
}

.location {
    font-size: 10px;
    letter-spacing: 3px;
    color: #777;
}

.education {
    padding: 120px 10% 130px;
}

.education h2 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-bottom: 50px;
}

.education-list {
    max-width: 600px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.education-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.education-item p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.6;
}

.drives {
    position: relative;
    min-height: 100vh;
    padding: 110px 10% 80px;
    background: #0a0a0a;
    color: #f5f5f5;
    overflow: hidden;
}

.drives-header {
    position: relative;
    margin-bottom: 100px;
}

.drives-header h2 {
    margin: 0;
    font-size: clamp(60px, 8vw, 125px);
    line-height: 0.84;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.drives-header h2 span {
    color: #777;
}

.drives-subtitle {
    margin-top: 32px;
    margin-left: 2px;
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #bdbdbd;
}

.drives-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: 0;
}

.drive-item {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 45px;
    padding: 50px 0;
    border-top: 1px solid #292929;
}

.drive-item:last-child {
    border-bottom: 1px solid #292929;
}

.drive-number {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #666;
    padding-top: 6px;
}

.drive-text {
    max-width: 570px;
}

.drive-text h3 {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.drive-text p {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 300;
    color: #999;
}

.footer {
    position: relative;
    padding: 140px 8vw 35px;
    background: #0a0a0a;
    color: #f5f5f5;
    text-align: center;
}

.footer h2 {
    margin: 0;
    font-size: clamp(20px, 3vw, 35px);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 55px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #777;
    text-decoration: none;
    font-size: 19px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 50px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
}

@media (max-width: 700px) {

    .drives {
        padding: 100px 7vw 70px;
    }

    .drives-header {
        margin-bottom: 90px;
    }

    .drives-header h2 {
        font-size: clamp(58px, 17vw, 100px);
    }

    .drives-subtitle {
        margin-top: 30px;
        font-size: 17px;
    }

    .drive-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 0;
    }

    .drive-number {
        padding: 0;
    }

    .drive-text h3 {
        margin-bottom: 18px;
        font-size: 42px;
    }

    .drive-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .drives-footer {
        margin-top: 70px;
    }

    .footer {
        padding: 110px 7vw 30px;
    }

    .footer h2 {
        font-size: 28px;
    }

    .social-links {
        margin-top: 45px;
        gap: 22px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .footer-bottom {
        margin-top: 45px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 600px) {

    .logo {
        top: 25px;
        left: 25px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .contact {
        position: absolute;
        top: 20px;
        right: 20px;
        left: auto;
        transform: none;
        width: auto;
    }

    .contact button {
        padding: 10px 15px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: 6px;
    }

    .about {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 55px;
        padding: 100px 25px;
    }

    .about-content {
        order: 1;
        max-width: none;
    }

    .about-image {
        order: 2;
        width: 100%;
        max-width: none;
    }

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: 45px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}