/*---------------------- FONT-FACES ----------------------------------*/
@font-face {
    font-family: 'Arsenal';
    src: url('/assets/fonts/Arsenal/Arsenal-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Arsenal';
    src: url('/assets/fonts/Arsenal/Arsenal-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Arsenal';
    src: url('/assets/fonts/Arsenal/Arsenal-Italic.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: italic;
}

@font-face {
    font-family: 'Arsenal';
    src: url('/assets/fonts/Arsenal/Arsenal-BoldItalic.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: italic;
}

@font-face {
    font-family: 'Julius Sans One';
    src: url('/assets/fonts/Julius_Sans_One/JuliusSansOne-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Nanum Gothic';
    src: url('/assets/fonts/Nanum_Gothic/NanumGothic-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Nanum Gothic';
    src: url('/assets/fonts/Nanum_Gothic/NanumGothic-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Nanum Gothic';
    src: url('/assets/fonts/Nanum_Gothic/NanumGothic-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* Extra Bolde */
    font-style: normal;
}
/*---------------------- GENERAL ----------------------------------*/
* {
    box-sizing: border-box;
}
/* ----------------------- FONT-SIZE STYLES ---------------------------- */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

@media screen and (min-width: 480px) {
    html {
        font-size: 11px;
    }
}

@media screen and (min-width: 576px) {
    html {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 13px;
    }
}

@media screen and (min-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media screen and (min-width: 1400px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 1600px) {
    html {
        font-size: 18px;
    }
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 20px;
    }
}

@media screen and (min-width: 2560px) {
    html {
        font-size: 22px;
    }
}
/* ------------------------------ BODY --------------------------------- */
body {
    background-color: #ffffff;
    color: #363131;
    margin: 0;
    font-family: "Nanum Gothic", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Julius Sans One", sans-serif;
}
/*------------------------------ HEADER --------------------------------- */
.header {
    background: #f2f2f2;
    position: sticky;
    top: 0px;
    box-shadow: 0 0 5px #c4c0c0;
    z-index: 100;
    transition: top 0.2s;
}

.header-hidden {
    position: fixed;
    top: -100px;
    width: 100%;
}

.header__container {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    margin: auto;
    max-width: 992px;
    
}

@media screen and (min-width: 768px) {
    .header__container {
        gap: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .header__container {
        max-width: 1200px;
    }
}

@media screen and (min-width: 1400px) {
    .header__container {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .header__container {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1920px) {
    .header__container {
        max-width: 1920px;
    }
}

@media screen and (min-width: 2560px) {
    .header__container {
        max-width: 2560px;
    }
}
/*------------------------------ HEADER > LOGO ---------------------------- */
.header__container .logo {
    display: flex;
    flex: 0;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: inherit;
    order: 1;
}

.header__container .logo__img {
    margin: 5px;
}

.header__container .logo__img img {
    width: 3.2rem;

}

.header__container .logo__body {
    display: none;
}

.header__container .logo__title .colorable-svg{
    width: 12rem;
}

.header__container .logo__subtitle {
    text-align: center;
}

.header__container .logo__subtitle p{
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 0.8rem;
    text-wrap: nowrap;
}

@media screen and (min-width: 768px) {
    .header__container .logo__body {
        display: flex;
        margin-right: 10px;
        flex-direction: column;
    }
}

@media screen and (min-width: 992px) {
    .header__container .logo {
        order: 0;
        flex-basis: 50%;
    }
}
/*------------------------------ HEADER > NAVBAR ---------------------------- */
.header__container .navbar {
    flex: 1;
}

.header__container .navbar:last-child {
    order: 2;
}

.header__container .navbar__list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.header__container .navbar__list li {
    list-style: none;
    flex: 1;
    text-align: center;
}

.header__container .navbar__list a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #4d4c4c;
    text-transform: uppercase;
    padding: 0 5px;
    line-height: 3rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color 0.4s, border 0.4s, color 0.4s, box-shadow 0.4s;
    font-family: "Arsenal", sans-serif;
    font-size: 1.1rem;
}

.header__container .navbar__list a:hover {
    background-color: #E6AA77;
    color: #ffffff;
    box-shadow: 0 0 5px #E6AA77;
}

@media screen and (min-width: 768px) {
    .header__container .navbar__list {
        gap: 10px;
    }

    .header__container .navbar__list a {
        font-size: 1.3rem;
    }
}
/* -------------------------- BANNER -----------------------------*/
.banner {
    color: #ffffff;
    background-image: image-set(
        url("/assets/img/banner/banner-360x543.webp") type("image/webp"),
        url("/assets/img/banner/banner-360x543.jpg") type("image/jpeg")
    );
    background-size: cover;
    background-color: #5651942c;
    background-blend-mode: darken;
    background-position: center;
    display: flex;
    padding: 40px 0;
    min-height: 40rem;
}

.banner__line {
    flex: 1;
    background: radial-gradient(#00000075, transparent);
}

.banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 100%;
}

.banner__head {
    flex: 0;
    text-align: right;
}

.banner__logo {
    display: inline-block;
    margin: 20px 40px;
    box-shadow: 0 0 5px #ffffff;
    border-radius: 50%;
    padding: 2.5rem;
    background-color: #f5eded4f;
}

.banner__logo img {
    width: 15rem;
    position: relative;
    top: 0.7rem;
    left: 0.7rem;
}

.banner__title {
    margin: 0;
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

.banner__title .colorable-svg {
    width: 28rem;
    fill: #ffffff;
}

.banner__text {
    text-align: center;
    text-wrap: pretty;
    font-size: 2.2rem;
    font-weight: 500;
    
}



@media screen and (min-width: 576px){ /*Image query*/
    .banner {
        background-image: image-set(
            url("/assets/img/banner/banner-576x612.webp") type("image/webp"),
            url("/assets/img/banner/banner-576x612.jpg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 768px){ /*Image query*/
    .banner {
        background-image: image-set(
            url("/assets/img/banner/banner-768x614.webp") type("image/webp"),
            url("/assets/img/banner/banner-768x614.jpg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 992px){
    .banner {
        padding: 60px 0;
        background-image: image-set(
            url("/assets/img/banner/banner-992x560.webp") type("image/webp"),
            url("/assets/img/banner/banner-992x560.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        flex-direction: row;
        max-width: 992px;
        margin: auto;
    }

    .banner__title .colorable-svg {
        width: 35rem;
        fill: #ffffff;
    }

    .banner__text {
        text-align: center;
        text-wrap: pretty;
        font-size: 2.2rem;
        font-weight: 500;
        
    }

    .banner__head{
        flex: 1;
    }

    .banner__body {
        flex: 2;
    }
}

@media screen and (min-width: 1200px) {
    .banner {
        padding: 80px 0;
        background-image: image-set(
            url("/assets/img/banner/banner-1200x600.webp") type("image/webp"),
            url("/assets/img/banner/banner-1200x600.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        max-width: 1200px;
    }
}

@media screen and (min-width: 1400px) {
    .banner {
        padding: 100px 0;
        background-image: image-set(
            url("/assets/img/banner/banner-1400x645.webp") type("image/webp"),
            url("/assets/img/banner/banner-1400x645.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .banner {
        background-image: image-set(
            url("/assets/img/banner/banner-1600x720.webp") type("image/webp"),
            url("/assets/img/banner/banner-1600x720.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1920px){
    .banner {
        background-image: image-set(
            url("/assets/img/banner/banner-1920x800.webp") type("image/webp"),
            url("/assets/img/banner/banner-1920x800.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        max-width: 1920px;
    }
}

@media screen and (min-width: 2560px){
    .banner {
        background-image: image-set(
            url("/assets/img/banner/banner-2560x881.webp") type("image/webp"),
            url("/assets/img/banner/banner-2560x881.jpg") type("image/jpeg")
        );
    }

    .banner__content {
        max-width: 2560px;
    }
}
/* ------------------------- ABOUT US -----------------------------*/
.about-us {
    color: #4d4c4c;
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.about-us__title {
    background: linear-gradient(#ffffff 70%, #C5C5C5);
    box-shadow: 0 0 5px #c4c0c0;
}

.about-us__title h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
    line-height: 8rem;
    margin: 0;
    font-weight: 700;
}

.about-us__container {
    align-items: center;
    margin: 1.8rem;
    padding: 1.8rem;
    border-radius: 50px;
    box-shadow: 0 0 5px #c4c0c0;
}

.about-us__container .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 20px auto;
    max-width: 992px;
}

.about-us__container .section:first-child {
    margin: 0 auto;
}

.about-us__container .section__first-text  {
    background-image: image-set(
        url("/assets/img/kitchen/kitchen-640x435.webp") type("image/webp"),
        url("/assets/img/kitchen/kitchen-640x435.jpg") type("image/jpeg")
    );
    background-size: cover;
    background-color: #0101082c;
    background-blend-mode: darken;
    background-position: center;
    border-radius: 25px;
    box-shadow: 0 0 5px #c4c0c0;
}

.about-us__container .section__first-text p {
    color: #ffffff;
    font-size: 1.2rem;
    text-wrap: pretty;
    font-weight: 500;
    text-align: justify;
    margin: 0;
    padding: 1.2rem;
    text-align: justify;
    background: radial-gradient(#00000075, transparent);
}

.about-us__container .section__img {
    flex: 0;
    box-shadow: 0 0 5px #c4c0c0;
    background-color: #d19d1a6b;
    border-radius: 50%;
    margin: 0px 1.2rem;
    flex-basis: 75vw;
    aspect-ratio: 1/1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-us__container .section__img--first {
    background-image: image-set(
        url("/assets/img/hall/hall-640x538.webp") type("image/webp"),
        url("/assets/img/hall/hall-640x538.jpeg") type("image/jpeg")
    );
}

.about-us__container .section__img--second {
    background-image: image-set(
        url("/assets/img/livingroom/livingroom-459x640.webp") type("image/webp"),
        url("/assets/img/livingroom/livingroom-459x640.jpeg") type("image/jpeg")
    );
}

.about-us__container .section__img--third {
    background-image: image-set(
        url("/assets/img/bathroom/bathroom-536x640.webp") type("image/webp"),
        url("/assets/img/bathroom/bathroom-536x640.jpeg") type("image/jpeg")
    );
}

.about-us__container .section__body {
    flex: 1;
    padding: 10px;
    border-bottom: 5px solid #E6AA77;
    border-radius: 25px;
    text-align: center;
    margin: 1.2rem 0;
}

.about-us__container .section__title {
    margin: 0;
    color: #E6AA77;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.about-us__container .section__text {
    font-size: 1.2rem;
    text-wrap: pretty;
    font-weight: 500;
    text-align: justify;
}

@media screen and (min-width: 768px){ /*Image query*/
    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-800x544.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-800x544.jpg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall-800x673.webp") type("image/webp"),
            url("/assets/img/hall/hall-800x673.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom-574x800.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom-574x800.jpeg") type("image/jpeg")
        );
    }
    
    .about-us__container .section__img--third {
        background-image: image-set(
            url("/assets/img/bathroom/bathroom-670x800.webp") type("image/webp"),
            url("/assets/img/bathroom/bathroom-670x800.jpeg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 992px) {
    .about-us__container .section {
        flex-direction: row;
    }

    .about-us__container .section__img {
        flex-basis: 45%;
    }   

    .about-us__container .section__img--right {
        order: 1;
    }

    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-1024x696.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-1024x696.jpg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall-1024x862.webp") type("image/webp"),
            url("/assets/img/hall/hall-1024x862.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom-734x1024.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom-734x1024.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--third {
        background-image: image-set(
            url("/assets/img/bathroom/bathroom-858x1024.webp") type("image/webp"),
            url("/assets/img/bathroom/bathroom-858x1024.jpeg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 1200px) {
    .about-us__container .section {
        max-width: 1200px;
    }

    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-1280x870.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-1280x870.jpg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall-1280x1077.webp") type("image/webp"),
            url("/assets/img/hall/hall-1280x1077.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom-918x1280.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom-918x1280.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--third {
        background-image: image-set(
            url("/assets/img/bathroom/bathroom-1072x1280.webp") type("image/webp"),
            url("/assets/img/bathroom/bathroom-1072x1280.jpeg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 1400px) {
    .about-us__container .section {
        max-width: 1400px;
    }

    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-1600x1087.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-1600x1087.jpg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall-1600x1346.webp") type("image/webp"),
            url("/assets/img/hall/hall-1600x1346.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom-1147x1600.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom-1147x1600.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--third {
        background-image: image-set(
            url("/assets/img/bathroom/bathroom.webp") type("image/webp"),
            url("/assets/img/bathroom/bathroom.jpeg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 1600px) {
    .about-us__container .section {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1920px) {
    .about-us__container .section {
        max-width: 1920px;
    }

    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-1920x1305.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-1920x1305.jpg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall-1920x1615.jpeg") type("image/webp"),
            url("/assets/img/hall/hall-1920x1615.webp") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom-1377x1920.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom-1377x1920.jpeg") type("image/jpeg")
        );
    }
}

@media screen and (min-width: 2560px) {
    .about-us__container .section {
        max-width: 2560px;
    }

    .about-us__container .section__first-text  {
        background-image: image-set(
            url("/assets/img/kitchen/kitchen-2560x1740.webp") type("image/webp"),
            url("/assets/img/kitchen/kitchen-2560x1740.webp") type("image/jpeg")
        );
    }

    .about-us__container .section__img--first {
        background-image: image-set(
            url("/assets/img/hall/hall.webp") type("image/webp"),
            url("/assets/img/hall/hall.jpeg") type("image/jpeg")
        );
    }

    .about-us__container .section__img--second {
        background-image: image-set(
            url("/assets/img/livingroom/livingroom.webp") type("image/webp"),
            url("/assets/img/livingroom/livingroom.jpeg") type("image/jpeg")
        );
    }
}
/* ------------------------- lOCATION -----------------------------*/
.location {
    color: #4d4c4c;
    background-image: image-set(
        url('/assets/img/bg-location/bg-location.avif') type('image/avif'),
        url('/assets/img/bg-location/bg-location.webp') type('image/webp'),
        url('/assets/img/bg-location/bg-location.jpg') type('image/jpeg')
    );
    background-size: contain;
    background-position: center;
    padding-bottom: 1.8rem;
}

.location__title {
    background: linear-gradient(#ffffff 70%, #C5C5C5);
    box-shadow: 0 0 5px #c4c0c0;
    margin-bottom: 1.8rem;
}

.location__title h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
    line-height: 8rem;
    margin: 0;
    font-weight: 700;
}

.location__content {
    display: flex;
    min-height: 90vh;
    padding: 1.8rem;
    gap: 1.8rem;
    flex-direction: column;
}

.location__text {
    color: #ffffff;
    border: 5px solid #f5f2f275;
    border-radius: 50px;
    flex: 1;
    background: #ffffff1e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem;
    min-height: 50vh;
}

.location__text p{
    text-align: center;
    font-size: 2rem;
    margin: 0.5rem 0; 
}

.location__map {
    flex: 1.5;
}

.location__map iframe {
    box-shadow: 0 0 5px #f3f1f1;
    border-radius: 25px;
    width: 100%;
    min-height: 100%;
}

@media screen and (min-width: 992px) {
    .location__content {
        flex-direction: row;
        max-width: 992px;
        margin: auto;
        min-height: 50vh;
    }
}

@media screen and (min-width: 1200px) {
    .location__content {
        max-width: 1200px;
        min-height: 60vh;
    }
}

@media screen and (min-width: 1400px) {
    .location__content {
        max-width: 1400px;
        min-height: 70vh;
    }
}

@media screen and (min-width: 1600px) {
    .location__content {
        max-width: 1600px;
        min-height: 80vh;
    }
}

@media screen and (min-width: 1920px) {
    .location__content {
        max-width: 1920px;
    }
}

@media screen and (min-width: 2560px) {
    .location__content {
        max-width: 2560px;
    }
}
/* ------------------------- CONTACT -----------------------------*/
.contact {
    color: #4d4c4c;
    background: #84736B;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1.8rem;
}

.contact__title {
    background: linear-gradient(#ffffff 70%, #C5C5C5);
    box-shadow: 0 0 5px #c4c0c0;
    margin-bottom: 1.8rem;
}

.contact__title h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
    line-height: 8rem;
    margin: 0;
    font-weight: 700;
}

.contact__container {
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    gap: 1.8rem;
}

@media screen and (min-width: 992px) {
    .contact__container {
        flex-direction: row;
        max-width: 992px;
        margin: auto;
        
    }
}

@media screen and (min-width: 1200px) {
    .contact__container {
        max-width: 1200px;
    }
}

@media screen and (min-width: 1400px) {
    .contact__container {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .contact__container {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1920px) {
    .contact__container {
        max-width: 1920px;
    }
}

@media screen and (min-width: 2560px) {
    .contact__container {
        max-width: 2560px;
    }
}
/* ------------------------- CONTACT > INFO -----------------------------*/
.contact__container .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.8rem;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex: 1;
    order: 1;
}

.contact__container .info__title {
    text-align: center;
    color: #333333;
    font-size: 2rem;
    margin: 1.1rem 0;
}

.contact__container .info__body {
    display: flex;
    justify-content: space-around;
    margin-top: 1.8rem;
    gap: 1.8rem;
}

.contact__container .info__item {
    text-align: center;
}

.contact__container .info__item i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #555555;
}

.contact__container .info__item p {
    font-size: 1.3rem;
    margin: 0.8rem 0;
    color: #666666;
}

.contact__container .info__item a {
    font-size: 1.3rem;
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact__container .info__item a:hover {
    color: #0470db;
}

.contact__container .info__social-media {
    font-size: 1.1rem;
    text-align: center;
    margin: 0.8rem 0;
}

.contact__container .info__social-media a {
    margin: 0 1rem;
    font-size: 3rem;
    color: #555555;
    transition: color 0.3s;
}

.contact__container .info__social-media a:hover {
    color: #1e90ff;
}

@media screen and (min-width: 992px) {
    .contact__container .info {
       order: 0;
    }
}
/* ------------------------- CONTACT > FORM -----------------------------*/
.contact__container .form {
    background-color: #ffffff;
    padding: 1.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex: 1;
}

.contact__container .form__group {
    margin-bottom: 1.8rem;
}

.contact__container .form__group label {
    display: block;
    margin: 1rem 0 0.4rem 0 ;
    color: #333333;
    font-size: 1.3rem;
    font-weight: 500;
}

.contact__container .form__group input, .contact__container .form__group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1.3rem;
}

.contact__container .form__group textarea {
    height: 15rem;
    resize: none;
}

.contact__container .form__group input[type="submit"] {
    background-color: #1e90ff;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact__container .form__group input[type="submit"]:hover {
    background-color: #0470db;
}
/* ------------------------- FOOTER -----------------------------*/
.footer {
    background-color: #333333e0;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #d19c1a;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s;
}

.footer a:hover {
    text-decoration: underline;
}