﻿body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    height: 80vh;
    background-image: url('../img/bg_banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 5px solid #41dd15;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

.welcome {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    letter-spacing: 10px;
    font-weight: 700;
    margin-bottom: 0;
}

.logo {
    max-width: 800px;
}


.about-section {
    background-image: url('../img/bg_sillhouette.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.profile-img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #41dd15;
}

.about-cont .my-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 8px;
}

.about-cont .jeremy {
    font-family: 'Montserrat', sans-serif;
    color: #e4400d;
    font-size: 50px;
    font-weight: 700;
}

.about-cont p {
    font-size: 24px;
}

.about-section .container {
    padding-top: 3em;
    padding-bottom: 3em;
}

.cta-section {
    min-height: 450px;
    background-image: url('../img/shutterstock_2088641623.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    border-top: 5px solid #41dd15;
    border-bottom: 5px solid #41dd15;
}

    .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
    }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .cta-section p {
        font-size: 24px;
        color: #41dd15;
        font-weight: 500
    }

    .cta-section a {
        color: #41dd15;
        text-decoration: none;
        font-size: 30px;
    }

        .cta-section a:hover {
            color: #fc6421;
        }

.text-yellow {
    color: #fff049;
}

/* FOOTER */
.footer {
    background: #111;
}

.soc-container {
    position: relative;
}

.social-icons {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -60px;
}

    .social-icons img {
        width: 70px;
        margin: 0 10px;
        transition: 0.3s;
        border: 5px solid #41dd15;
        border-radius: 100px;
    }

        .social-icons img:hover {
            transform: scale(1.2);
        }

.footer-text {
    color: #fff;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .logo {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .hero {
        height: 40vh;
        background-image: url('../img/bg_banner.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
    }

    .welcome {
        font-size: 16px;
    }

    .profile-img {
        width: 80%;
        height: 80%;
        margin-bottom: 50px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 560px) {

    .social-icons img {
        width: 50px;
        margin: 0 5px;
        border: 3px solid #fc6421;
    }

    .social-icons {
        margin-top: -50px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-section a {
        color: #41dd15;
        text-decoration: none;
        font-size: 18px;
    }

    .about-cont .my-name {
        font-size: 16px;
    }

    .about-cont .jeremy {
        font-size: 30px;
    }

    .about-cont p {
        font-size: 16px;
    }
}
