body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: sans-serif;
    background: #ffffff;
    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: #bd965c;
    transform: scale(1.1);
}

.social-icons img {
    width: 30px;
    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: #bd965c;
    text-decoration: underline;
}

/* Sección Carta de Vinos */

main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #f5eeee;
}

.vino {
    width: auto;
    max-width: 300px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    background-color: white;
    padding: 20px;
}

.vino img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #bd965c;
    margin-bottom: 15px;
    border-radius: 10px 10px 0 0;
}

.vino p {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.vino strong {
    color: #bd965c;
}

.vino:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.vinos_titulo {
    background-image: url(/imagenes/carta_vinos.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 100px;
    text-align: center;
    font-size: 60px;
    color: #ffffff;
    font-family: 'Playfair Display';
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 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.05);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    header {
        position: relative; 
        box-shadow: none; 
    }
}


@media (max-width: 1200px) {
    .logo-text {
        font-size: 50px;
    }

    .vinos_titulo {
        padding: 80px;
        font-size: 45px;
    }
}

@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;
    }

    .vinos_titulo {
        padding: 60px;
        font-size: 40px;
    }

    .vino {
        max-width: 100%;
    }

    main {
        justify-content: center;
    }

    .inicio-btn {
        margin-right: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 30px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .vinos_titulo {
        padding: 40px;
        font-size: 30px;
    }

    .inicio-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}


@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; 
    }
}