/* Footer Styling */
.footer {
    background-image: url('../assets/imgs/vianden-castle.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container1 {
    display: flex;
}

.vianden-title {
    font-family: 'Copperplate CC';
    text-align: center;
    margin: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.franchir {
    font-size: 4em;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 5px;
    padding-left: 50px;
    padding-right: 50px;
}

.future {
    font-size: 3em;
    background-color: rgba(255, 255, 255, 0.9);
    width: 75%;
    border-radius: 5px;
    margin: auto;
    margin-top: 20px;
}

.container2 {
    background-image: url('../assets/imgs/footer-shape1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.footer-logo {
    width: 300px;
}

.footer-content2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    padding-top: 2rem;
    margin-bottom: 70px;
}

.footer p{
    color: #fff;
}

.footer a{
    color: #fff;
}
.footer a:hover{
    color: #f89b00;
}

.footer-social-container{
    display: grid;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 15px;
}


@media only screen and (max-width:980px) {
    .footer-content2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .logo-container {
        padding: 30px 0;
    }
    .footer-item.fourth {
        grid-area: 1/2/span1 /span 1;
    }
    .footer-item {
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    /* * Footer * */
    .franchir {
        font-size: 3rem;
    }
    .future {
        font-size: 2em;
    }
}
@media only screen and (max-width: 580px) {
    .franchir {
        font-size: 2em;
        padding-left: 30px;
        padding-right: 30px;
    }
    .future {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 500px) {
    .franchir {
        font-size: 2em;
        padding-left: 15px;
        padding-right: 15px;
    }
    .future {
        font-size: 1.5em;
    }
    .footer-logo {
        width: 200px;
    }
    .footer-content2 {
        grid-template-columns: 1fr;
    }
    .footer-item.fourth {
        grid-area: auto;
    }
}

@media only screen and (max-width: 380px) {
    .footer-logo {
        width: 150px;
    }
}