@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* Footer General Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
    margin-top: 100px;
    overflow: hidden;
    width: 100%;
    bottom:0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    line-height: 25px
}

.footer-section > p{
    line-height: 25px;
}

.footer-section h2, .footer-section h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #E48D50;
}

/* Newsletter Form */
.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #E48D50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #d07a45;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #E48D50;
}

/* Specific Sections Order */
.footer-section:nth-child(1) {
    order: 1;
}

.footer-section:nth-child(2) {
    order: 2;
}

.footer-section:nth-child(3) {
    order: 3;
}

.footer-section:nth-child(4) {
    order: 4;
}

.footer-section.newsletter {
    order: 5;
    flex-basis: 100%;
}

.footer-section.social-media {
    order: 6;
    flex-basis: 100%;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .footer-section:nth-child(1){
        padding-left: 20px;
    }
}


@media screen and (max-width: 1200px) {
    .footer-section{
        text-align: center;
    }
}

.social-icons {
    margin-left: 46%;
}

@media screen and (max-width: 1200px) {
    .social-icons{
       margin-left: 38%;
    }
}

@media screen and (max-width: 700px) {
    .accordion h3{
        font-size: 13px;
    }
}