/* Va Bene Logroño - Artisanal Pizzeria Design */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    /* Carbon Black */
    --secondary-color: #9a1b1e;
    /* Traditional Red */
    --accent-color: #5a6b47;
    /* Olive Green */
    --bg-color: #fcfaf7;
    /* Flour Cream */
    --text-color: #2c2c2c;
    --nav-text-initial: #ffffff;
    /* White text on hero */
    --nav-text-scrolled: #1a1a1a;
    /* Black text on scroll */
    --footer-bg: #111111;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: none;
    /* Removed uppercase for more elegance */
    letter-spacing: 0;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: #ffffff;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.navbar.scrolled .navbar-brand div {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.vabene-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white !important; /* Forzamos blanco al inicio */
    transition: color 0.4s ease;
}

.vabene-logo-box {
    border: 2px solid white !important; /* Borde blanco inicial */
    padding: 10px 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white !important; /* Texto blanco inicial */
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.navbar.scrolled .vabene-logo-text {
    color: var(--primary-color);
}

.navbar.scrolled .vabene-logo-box {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--nav-text-initial) !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin: 0 1.2rem;
    position: relative;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-link {
    color: var(--nav-text-scrolled) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar.scrolled .nav-link::after {
    background-color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-color);
        padding-top: 80px;
    }
    .nav-link {
        color: var(--primary-color) !important;
        font-size: 1.2rem;
        margin: 20px 0;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('vabene_hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #ffffff; /* Aseguramos blanco brillante */
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6); /* Sombra para legibilidad total */
}

.hero-content .pilgrim-badge {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Sections */
.section-padding {
    padding: 140px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Product Cards */
.pizza-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.pizza-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 25px;
}

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

/* Specific for Va Bene Theme */
.pilgrim-badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 15px;
    display: inline-block;
}

.btn-artisan {
    background: #ffffff; /* Botón blanco en el Hero para destacar */
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: all 0.3s;
    border: 1px solid #ffffff;
}

.btn-artisan:hover {
    background: transparent;
    color: #ffffff;
}

.review-badge .stars {
    color: #ffcc00; /* Estrellas doradas */
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Menu QR Style */
.menu-section {
    background-color: #ffffff; /* Fondo blanco puro para máxima legibilidad QR */
    padding: 100px 0;
}

.category-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.menu-list {
    margin-bottom: 5rem;
}

.menu-item-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.menu-item-row:hover {
    background-color: #fafafa;
}

.menu-img-wrapper {
    flex: 0 0 100px;
    margin-right: 1.5rem;
}

.menu-img-square {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-item-info {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.menu-item-price {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-desc {
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Review Section */
.review-cta-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.3s;
}

.google-review-btn:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

.google-review-btn i {
    font-size: 1.5rem;
    color: #4285F4; /* Google Blue */
}

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 100px 0 50px;
}

/* Tab Menu */
.modal-body .nav-tabs .nav-link {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    padding: 20px;
}

.modal-body .nav-tabs .nav-link.active {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.menu-item-price {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--secondary-color);
}