@import url('../header.css');
@import url('../footer.css');
@import url('../socialmedia.css');
@import url('../scrollbar.css');

main{
    margin-top: 110px;
}
.hero-section{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.hero-section h1{
    font-size: 64px;
    color: #222;
}
.hero-section h1::before{
    content: "<";
    color: #d11c1c;
}
.hero-section h1::after{
    content: "/>";
    color: #d11c1c;
}
.hero-section ul{
    list-style: none;
    font-size: 22px;
}
.hero-section ul li::before{
    content: "// ";
    color: #d11c1c;
}
/* CONTACT INFO SECTION */
.contact-info-section{
    width: 100%;
    max-width: 1100px;
    margin: 0px auto;
    margin-bottom: 200px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2,1fr);
}
.contact-info-container{
    width: 100%;
    color: #222;
}
.contact-info-container h2::before{
    content: "// ";
    color: #d11c1c;
}
.contact-info-container h2{
    font-size: 32px;
}
.contact-info-container ul {
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    list-style: none;
    color: #333;
    font-size: 20px;
}
.contact-info-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1180px){
    main{
        margin-top: 80px;
    }
    .hero-section h1{
        font-size: 42px;
    }
    .hero-section ul{
        font-size: 18px;
    }
    .contact-info-section img{
        height: 220px;
        width: 70%;
        object-fit: contain;
    }
    .contact-info-section{
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }
}
@media screen and (max-width: 780px){
    .hero-section{
        flex-direction: column;
        text-align: center;
    }
}