body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: burlywood;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: sans-serif;
    background: burlywood;
    color: #333;
    padding: 20px 0;
}


header.sticky {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); 
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-header {
    width: 190px;
    height: 130px;
    border-radius: 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    color: #483729;
    text-decoration: none;
    margin-left: 20px;
}

.logo-text:hover {
    color: #8f643e;
    transform: scale(1.1);
}

.social-icons img {
    width: 50px;
    margin: 0 10px;
}

.reservar-btn {
    padding: 10px 20px;
    margin-right: 100px;
    font-size: 16px;
    background-color: #bd965c;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reservar-btn:hover {
    background-color: #483729;
    transform: scale(1.1);
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    font-family: 'Montserrat';
    line-height: 40px;
    font-size: 25px;
    color: #483729;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

main {
    padding: 20px;
}

/* Sección de ubicación */

.location-section {
    text-align: center;
    padding: 50px;
    background-color: #f5eeee;
}

.location-section h2 {
    font-family: 'Playfair Display';
    font-size: 36px;
    color: #bd965c;
    margin-bottom: 20px;
}

.location-section p {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #5a5858;
    margin-bottom: 30px;
}

.map-container {
    display: flex;
    justify-content: center;
}

.map-container iframe {
    border: 2px solid #bd965c;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    height: 450px;
}

/* Footer */

.footer {
    display: flex;
    justify-content: space-between;
    background-color: #483729;
    color: white;
    padding: 20px;
    position: relative;
    flex-wrap: wrap; 
}

.footer-left,
.footer-right {
    flex: 1;
    padding: 10px; 
}

.footer-left h5,
.footer-right h5 {
    font-family: 'Playfair Display';
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-info p,
.horarios-info p {
    font-family: 'Montserrat';
    font-size: 17px;
    line-height: 1.5; 
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    pointer-events: all; 
}

.footer .social-media {
    z-index: 10;
}

.social-media img {
    width: 40px;
    margin: 0 10px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    color: #bbb;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0; 
}
img:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    header {
        position: relative; 
        box-shadow: none; 
    }
}


@media (max-width: 1200px) {
    .logo-text {
        font-size: 50px;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
    }

    .logo-header {
        width: 150px;
        height: 100px;
    }

    .logo-text {
        font-size: 40px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 20px;
    }

    .map-container iframe {
        width: 100%;
        height: 350px;
    }

    .footer-left, .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 30px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
    }

    .footer-left, .footer-right {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .footer {
        flex-direction: column; 
        align-items: center; 
    }

    .footer-left, .footer-right {
        text-align: center;
        padding: 10px 0; 
    }

    .footer-left h5, .footer-right h5 {
        font-size: 20px; 
    }

    .contact-info p, .horarios-info p {
        font-size: 15px; 
        line-height: 1.4; 
    }

    .social-media img {
        width: 30px; 
        margin: 5px; 
    }

    .footer-bottom {
        padding: 10px;
        position: relative; 
    }
}