.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-content {
    max-width: 1200px;
}

.hero-title {
    font-size: 180px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-firstname,
.hero-lastname {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    opacity: 0.8;
}

.hero-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.tech-pill {
    padding: 12px 24px;
    border: 2px solid #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
}


.hero-year {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 5px;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 140px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 100px;
        letter-spacing: -3px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tech-stack {
        gap: 10px;
    }

    .tech-pill {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-btn {
        padding: 15px 30px;
        font-size: 12px;
    }

    .hero-year {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .tech-pill {
        padding: 8px 16px;
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .hero-year {
        display: none;
    }
}