/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DotGothic16", sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    padding: 10px;
    border-bottom: 1px solid black;
}

.logo {
    font-size: 40px;
    font-weight: normal;
}

.nav-element {
    list-style: none;
    display: flex;
    gap: 30px;
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}

.nav-element a {
    text-decoration: none;
    color: black;
}

/* Hero Section */
.hero-text {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.hero-text h1 {
    margin: 120px 0 10px 0;
    font-size: 115px;
    font-weight: normal;
    line-height: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 90vw;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(255, 87, 51, 0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
    align-items: center;
    margin: 100px 50px;
    padding: 20px;
}

.card img {
    width: 100%;
}

.card-text, .lable {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: lighter;
    padding: 3px 0;
}

.lable {
    font-size: 17px;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(36, 25, 243, 0.1);
    padding: 10px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(36, 25, 243, 0.2);
}

/* About Me */
.about-me {
    text-align: center;
    font-size: 45px;
    line-height: 1.1;
    padding: 20px;
    margin: 0 auto;
    width: 60vw;
}

/* Feature Section */
.feature {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border-bottom: 1px solid black;
}

.feature .heading {
    font-size: 60px;
    font-weight: normal;
    margin: 110px 0 10px 0;
}

.feature p {
    font-size: 23px;
    font-family: "Archivo", sans-serif;
    font-weight: 300;
    padding: 3px;
}

/* Featured Button */
.btn {
    padding: 15px 23px;
    background-color: #2419F3;
    border: none;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 17px;
    color: white;
    margin: 45px auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(36, 25, 243, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(36, 25, 243, 0.4);
}

/* Featured Image */
.featured-img {
    width: 95vw;
    box-shadow: 0 20px 40px rgba(255, 87, 51, 0.15);
    transition: transform 0.5s ease;
    border-radius: 5px;
    margin-bottom: 50px;
}

.featured-img:hover {
    transform: scale(1.02);
}

/* Right Section */
.right p {
    position: absolute;
    right: 0;
    width: 50vw;
    font-family: "Archivo", sans-serif;
    font-size: 25px;
    font-weight: 300;
    padding: 40px;
    line-height: 1.2;
}

/* Contact Section */
.contact {
    text-align: center;
    margin: 300px 20px 250px 20px;
    font-size: 30px;
    font-weight: lighter;
}

.contact h3 {
    font-weight: 300;
    font-size: 32px;
    padding: 20px;
}

.contact form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.contact form button {
    margin: 0;
}

.email {
    border: 1px solid black;
    border-radius: 10px;
    font-family: "Archivo Narrow", sans-serif;
    padding: 10px 25px;
    font-size: 20px;
    width: 500px;
    transition: all 0.3s ease;
}

.email:focus {
    outline: none;
    border-color: #2419F3;
    box-shadow: 0 0 10px rgba(36, 25, 243, 0.2);
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px;
}

.socials img {
    transition: transform 0.3s ease;
}

.socials img:hover {
    transform: translateY(-5px);
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin: 20px 40px;
}

.footer p {
    font-size: 25px;
    text-align: center;
}

.contact-me {
    border: 1px solid black;
    border-radius: 10px;
    font-family: "Archivo Narrow", sans-serif;
    background-color: #fff;
    padding: 10px 25px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-me:hover {
    background-color: #2419F3;
    color: white;
    border-color: #2419F3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(36, 25, 243, 0.3);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .hero-text h1 {
        font-size: 80px;
    }

    .about-me {
        font-size: 35px;
        width: 80vw;
    }

    .feature .heading {
        font-size: 50px;
    }

    .feature p {
        font-size: 20px;
    }

    .right p {
        font-size: 20px;
    }

    .contact {
        font-size: 25px;
    }

    .contact h3 {
        font-size: 28px;
    }

    .email {
        width: 400px;
    }

    .footer p {
        font-size: 20px;
    }
}

@media screen and (max-width: 799px) {
    .navbar {
        flex-direction: column;
        font-size: 16px;
    }

    .nav-element {
        gap: 30px;
        margin-top: 10px;
        font-size: 24px;
    }

    .hero-text h1 {
        font-size: 50px;
        margin: 20px 0;
    }

    .about-me {
        font-size: 30px;
        width: 100%;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature .heading {
        font-size: 40px;
    }

    .feature p {
        font-size: 18px;
    }

    .right p {
        font-size: 18px;
        width: 80vw;
    }

    .contact {
        font-size: 20px;
    }

    .contact h3 {
        font-size: 24px;
    }

    .email {
        width: 300px;
    }

    .footer p {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .nav-element {
        font-size: 20px;
    }

    .about-me {
        font-size: 25px;
    }

    .feature .heading {
        font-size: 30px;
    }

    .feature p {
        font-size: 16px;
    }

    .right p {
        font-size: 16px;
    }

    .contact {
        font-size: 18px;
    }

    .contact h3 {
        font-size: 20px;
    }

    .email {
        width: 250px;
    }

    .footer p {
        font-size: 16px;
    }
}
