* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    font-family: system-ui, -apple-system, sans-serif;
}

.main {
    width: 100%;
    min-height: 100vh;
    background-color: black;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5% 10%;
    gap: 5rem;
    flex: 1;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 40%;
    gap: 2.5rem;
}

nav {
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-weight: bold;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo span {
    color: red;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

nav a:hover,
nav .active {
    color: red;
}

.nav-line {
    width: 100%;
    height: 2px;
    background-color: red;
    margin-top: 5px;
    opacity: 0.7;
}

.content {
    flex: 1;
    max-width: 700px;
}

.content h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.content p {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 600;
    color: red;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.content .info {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: red;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.contact-btn:hover {
    background-color: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.profile {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    height: 650px;
    background: url(images/profile.jpg) no-repeat center/cover;
    box-shadow: 0 0 100px rgba(255, 0, 0, 0.25);
    border-radius: 12px;
    filter: brightness(1.05) contrast(1.05);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.profile:hover {
    transform: scale(1.02);
    box-shadow: 0 0 120px rgba(255, 0, 0, 0.35);
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.footer {
    width: 100%;
    padding: 40px 5%;
    background-color: #111;
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.socials {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 1;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.name {
    font-weight: 500;
    letter-spacing: 0.05em;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright span {
    color: red;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .hero {
        padding: 5% 8%;
        gap: 4rem;
    }

    .profile {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 5% 6%;
        gap: 3rem;
    }

    .profile {
        height: 500px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 25px;
        border-top: 1px solid red;
        z-index: 999;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding: 10% 5%;
        gap: 2rem;
        text-align: center;
    }

    .left {
        align-items: center;
        text-align: center;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content {
        align-items: center;
    }

    .content .info {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .profile {
        width: 100%;
        max-width: 100%;
        height: 60vw;
        min-height: 300px;
        max-height: 400px;
        margin: 0 auto 2rem;
        min-width: unset;
    }

    .contact-btn {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1.8rem;
    }

    .content .info {
        font-size: 1.1rem;
    }

    .profile {
        height: 70vw;
        min-height: 250px;
        max-height: 350px;
    }

    .socials {
        gap: 20px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}