/* Main styles */
:root {
    --skin-color: #ec1839;
    --bg-black-900: #151515;
    --bg-black-100: #222222;
    --bg-black-50: #393939;
    --text-black-900: #ffffff;
    --text-black-700: #e9e9e9;
}

body {
    background-color: var(--bg-black-900);
    color: var(--text-black-900);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.section {
    padding: 0 30px;
}

/* Home section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-black-900);
    padding: 60px 0;
}

.home .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.home .home-info {
    flex: 1;
    min-width: 300px;
}

.home .home-img {
    flex: 0 0 350px;
    text-align: center;
    position: relative;
}

.name {
    font-size: 40px;
    font-weight: 700;
    color: var(--skin-color);
    margin-bottom: 10px;
}

.home .home-img img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.home .home-info .hello {
    font-size: 28px;
    margin-bottom: 15px;
}

.home .home-info .my-profession {
    font-size: 30px;
    margin-bottom: 15px;
}

.home .home-info .typing {
    color: var(--skin-color);
    border-right: 2px solid var(--skin-color);
    padding-right: 5px;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--skin-color) }
}

.home .home-info p {
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--text-black-700);
}

/* Button styles */
.buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3s ease;
}
.btn.blue{
    background: #0a66c2;
}
.btn:hover {
    transform: scale(1.05);
}

/* Social links */
.home-social-follow {
    margin-top: 25px;
}

.home-social-links {
    margin-top: 15px;
}

.home-social-links a {
    height: 40px;
    width: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    color: var(--text-black-900);
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-social-links a:hover {
    color: var(--skin-color);
}

/* Contact info */
.contact-info-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-item .icon {
    display: inline-block;
}

.contact-info-item .icon .fa {
    font-size: 25px;
    color: var(--skin-color);
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin: 15px 0 5px;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
    .home .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .home .home-info {
        text-align: center;
    }

    .home .home-img {
        flex: 0 0 auto;
    }

    .home .home-img img {
        max-width: 300px;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home {
        padding: 40px 0;
    }

    .home .home-img img {
        max-width: 250px;
    }

    .home .home-info .hello {
        font-size: 24px;
    }

    .home .home-info .my-profession {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .home .home-img img {
        max-width: 200px;
    }

    .home .home-info .hello {
        font-size: 20px;
    }

    .home .home-info .my-profession {
        font-size: 22px;
    }
}
