@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    --naranja: #E67E22;
    --naranja-oscuro: #D35400;
    --negro: #1A1A1A;
    --blanco: #FFFFFF;
    --gris-claro: #F4F4F4;
    --madera: #4E342E;
    --madera-clara: #6D4C41;
    --madera-oscura: #3E2723;
    --vino: #722F37;
    --oro: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 100%);
    color: var(--negro);
    background-attachment: fixed;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
}

/* Textura de madera de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(78, 52, 46, 0.03) 0px,
            rgba(78, 52, 46, 0.03) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    z-index: -1;
}

/* ============ NAVBAR ============ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--madera-oscura) 0%, var(--madera) 100%);
    padding: 12px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--oro);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.logo {
    color: var(--oro);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Tangerine', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    font-size: 2.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--oro);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--oro);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* ============ HERO SECTION ============ */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/WhatsAppImage2026-05-03at12.46.12PM.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 50px;
    border: 3px solid var(--oro);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    max-width: 90%;
}

.hero h1 {
    color: var(--blanco);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--oro);
    display: block;
    font-size: 3.5rem;
    margin-top: 10px;
    font-family: 'Tangerine', cursive;
    font-weight: 700;
}

.slogan {
    color: var(--gris-claro);
    font-size: 1.3rem;
    margin: 20px 0;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Cormorant Garamond', serif;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-oscuro) 100%);
    color: var(--blanco);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--oro);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    font-size: 0.9rem;
}

.btn-main:hover {
    background: linear-gradient(135deg, var(--oro) 0%, #C9A227 100%);
    color: var(--negro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* ============ SECTIONS ============ */
.section {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    border-top: 3px solid var(--madera);
    border-bottom: 3px solid var(--madera);
    margin-top: 20px;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(78, 52, 46, 0.02) 0px,
            rgba(78, 52, 46, 0.02) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.section-alt {
    padding: 40px 30px;
    background: linear-gradient(135deg, #e8d4c4 0%, #d9c5b3 100%);
    position: relative;
    border-top: 3px solid var(--madera);
    border-bottom: 3px solid var(--madera);
    margin-top: 20px;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(78, 52, 46, 0.03) 0px,
            rgba(78, 52, 46, 0.03) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--madera-oscura);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
    font-family: 'Tangerine', cursive;
    font-weight: 700;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--oro), transparent);
}

/* ============ MENU SECTIONS ============ */
.menu-section {
    margin-bottom: 30px;
    position: relative;
}

.menu-section-title {
    font-size: 1.8rem;
    color: var(--vino);
    margin-bottom: 12px;
    padding-left: 15px;
    border-left: 5px solid var(--oro);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Tangerine', cursive;
    font-weight: 700;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 244, 244, 0.95) 100%);
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--madera);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(78, 52, 46, 0.02) 0px,
            rgba(78, 52, 46, 0.02) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-left-color: var(--oro);
}

.menu-card h3 {
    color: var(--naranja);
    margin-bottom: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.menu-card p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 6px;
    font-style: italic;
}

.price {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    color: var(--vino);
    font-size: 0.95rem;
    border-top: 1px solid var(--madera-clara);
    padding-top: 5px;
}

/* ============ BEBIDAS DESTACADAS ============ */
.drinks-section {
    background: linear-gradient(135deg, var(--vino) 0%, #5a1f25 100%);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.drinks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.drinks-section .title {
    color: var(--oro);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}

.drink-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--oro);
    transition: all 0.3s ease;
    position: relative;
}

.drink-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.drink-card h4 {
    color: var(--vino);
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.drink-card .drink-type {
    color: var(--naranja);
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.drink-card p {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 6px;
}

.drink-prices {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-top: 1px solid var(--madera-clara);
    padding-top: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.drink-prices span {
    color: var(--vino);
}

/* ============ GALLERY ============ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.img-box {
    height: 220px;
    background-size: cover;
    background-position: center;
    border: 6px solid var(--blanco);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 2;
}

.img-box:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.img-box:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

/* ============ MAP ============ */
.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--madera);
    position: relative;
    z-index: 1;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, var(--madera-oscura) 0%, var(--madera) 100%);
    color: var(--blanco);
    padding: 40px 30px 20px;
    border-top: 6px solid var(--oro);
    position: relative;
    margin-top: 20px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.footer .info h3 {
    color: var(--oro);
    margin-bottom: 12px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Tangerine', cursive;
    font-weight: 700;
}

.footer .info p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #ddd;
    font-size: 0.9rem;
}

.footer .info i {
    color: var(--naranja);
    margin-right: 10px;
    width: 18px;
}

.socials {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--naranja);
    color: var(--blanco);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.socials a:hover {
    background: var(--oro);
    transform: translateY(-3px) scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
}

.contact-form h3 {
    color: var(--oro);
    margin-bottom: 12px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Tangerine', cursive;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 2px solid var(--madera-clara);
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanco);
    border-radius: 5px;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--oro);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-form button {
    padding: 8px;
    background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-oscuro) 100%);
    border: 2px solid var(--oro);
    color: var(--blanco);
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.contact-form button:hover {
    background: linear-gradient(135deg, var(--oro) 0%, #C9A227 100%);
    color: var(--negro);
    transform: translateY(-2px);
}

.bottom-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 2px solid var(--madera-clara);
    font-size: 0.8rem;
    color: #aaa;
    position: relative;
    z-index: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .navbar {
        padding: 10px 20px;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links li a {
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 65px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 span {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .section,
    .section-alt,
    .drinks-section {
        padding: 35px 25px;
    }

    .menu-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links li a {
        font-size: 0.7rem;
        margin: 0;
    }

    .hero {
        margin-top: 110px;
        height: 80vh;
    }

    .hero-overlay {
        padding: 25px 20px;
        max-width: 95%;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero h1 span {
        font-size: 2rem;
    }

    .slogan {
        font-size: 0.95rem;
    }

    .btn-main {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .section,
    .section-alt,
    .drinks-section {
        padding: 30px 20px;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .menu-section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .menu-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 6px;
    }

    .menu-card {
        padding: 10px 12px;
    }

    .menu-card h3 {
        font-size: 0.85rem;
    }

    .menu-card p {
        font-size: 0.75rem;
    }

    .price {
        font-size: 0.85rem;
    }

    .drinks-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .drink-card {
        padding: 10px 12px;
    }

    .drink-card h4 {
        font-size: 0.85rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .img-box {
        height: 150px;
    }

    .map iframe {
        height: 250px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer .info h3,
    .contact-form h3 {
        font-size: 1.3rem;
    }

    .footer .info p {
        font-size: 0.8rem;
    }

    .socials {
        gap: 10px;
    }

    .socials a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 6px 10px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links li a {
        font-size: 0.6rem;
    }

    .hero {
        margin-top: 90px;
        height: 60vh;
    }

    .hero-overlay {
        padding: 15px 12px;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero h1 span {
        font-size: 1.5rem;
    }

    .slogan {
        font-size: 0.8rem;
        margin: 8px 0;
    }

    .btn-main {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .section,
    .section-alt,
    .drinks-section {
        padding: 20px 15px;
    }

    .title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .menu-section-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .menu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .menu-card {
        padding: 8px 10px;
    }

    .menu-card h3 {
        font-size: 0.75rem;
    }

    .menu-card p {
        font-size: 0.65rem;
    }

    .price {
        font-size: 0.75rem;
    }

    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .drink-card {
        padding: 8px 10px;
    }

    .drink-card h4 {
        font-size: 0.75rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .img-box {
        height: 180px;
    }

    .map iframe {
        height: 180px;
    }

    .footer-content {
        gap: 12px;
    }

    .footer .info h3,
    .contact-form h3 {
        font-size: 1.1rem;
    }

    .footer .info p {
        font-size: 0.75rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .contact-form button {
        font-size: 0.7rem;
    }

    .socials a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .bottom-footer {
        font-size: 0.7rem;
    }
}
