:root {
    --primary-bg: #1e1e1e;
    --text-light: #ffffff;
    --accent: #c4af8d;
    --input-bg: #fff;
    --button-bg: #a32020;
    --font-main: 'Poppins', sans-serif;
}

.footer {
    background-color: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-main);
}
.footer-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
}
.footer-section {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
}
.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.footer ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    display: block;
    margin: 8px 0;
    transition: 0.3s;
}
.footer ul li a:hover {
    color: var(--accent);
}
.form-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
}
.form-container form {
    display: flex;
    flex-direction: column;
}
.form-container label {
    color: var(--text-light);
    margin-bottom: 5px;
}
.newsletter input,
.newsletter textarea {
    padding: 12px;
    margin-bottom: 15px;
    background: var(--input-bg);
    border: 1px solid #333;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    width: 90%;
}
.form-container textarea {
    height: 120px;
}
.form-container button {
    background-color: var(--button-bg);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.form-container button:hover {
    background-color: #8b1a1a;
}
.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

.social-icons{
    margin: 10px 0;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 10px;
}

.map iframe {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
    height: 200px;
}

.newsletter button {
    background-color: #fd8914; 
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.newsletter button:hover {
    background-color: #e07810;
}
.footer-content-left{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-content-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.footer h3{
    font-size: 1.8rem;
    color: #fd8914; 
    margin-bottom: 15px;
}

@media (max-width:768px){
    .footer-container{
        flex-direction: column;
    }

    .footer-content-left{
        align-items: center;
        text-align: center;
        order: 3;
    }

    .footer-content-center{
        order: 1;
    }
    
    .footer-content-right{
        align-items: center;
        text-align: center;
        order: 2;
    }

}

/* 
.footer {
    background-color: #1e1e1e; 
    color: #fff; 
    padding: 100px 20px;
    font-family: 'Quicksand', sans-serif;
    width: 100%;
}


.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
    text-align: left; 
    padding: 40px;
}

.footer-left h3, .footer-right h3 {
    font-size: 1.8rem;
    color: #fd8914; 
    margin-bottom: 15px;
}

.footer-left p, .footer-right p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-form {
    max-width: 100%;
}

.footer-form input, .footer-form textarea {
    width: 89%;
    padding: 8px; 
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem; 
}

.footer-form button {
    background-color: #fd8914; 
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.footer-form button:hover {
    background-color: #e07810;
}


.map iframe {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
    height: 200px;
}

.footer-menu-links{
    padding: 0;
    list-style: none;
}

.footer-menu-links a{
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.footer-menu-links li{
    margin: 10px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%; 
        margin-bottom: 20px;
        padding: 10px;
    }

    .footer-form {
        max-width: 95%; 
    }
}
 */