:root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --accent-color: #e63946;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hero-section {
    background: 
linear-gradient(
135deg, 
rgba(0, 0, 0, 0.8) 0%, 
rgba(0, 0, 0, 0.4) 50%, 
rgba(0, 0, 0, 0.8) 100%
),
radial-gradient(
circle at 20% 30%, 
rgba(0, 0, 0, 0) 0%, 
rgba(0, 0, 0, 0.5) 100%
),
url('../img/a.jpg') no-repeat center center;
background-size: cover;
background-blend-mode: multiply;
min-height: 90vh;
position: relative;
display: flex;
align-items: center;
}


.hero-content {
    z-index: 2;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.navbar {
    background-color: var(--dark-color) !important;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0 ;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: ''!important;
    position: absolute!important;
    width: 0;
    height: 2px;
    background: var(--primary-color)!important;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease!important;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100% !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(180, 140, 60, 0.2);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.card-hover {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-size: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.section-title:hover:after {
    width: 120px;
}

/* Botón de WhatsApp flotante */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px!important;
    bottom: 40px!important;
    right: 40px!important;
    background-color: #25d366!important;
    color: #FFF!important;
    border-radius: 50px!important;
    text-align: center!important;
    font-size: 30px!important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3)!important;
    z-index: 100!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    animation: pulse 2s infinite!important;
    transition: all 0.4s ease!important;
}

.whatsapp-float:hover {
    background-color: #128C7E !important;
    transform: scale(1.1) translateY(-5px)!important;
    animation: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4)!important;
}

/* Animación de pulso para el botón de WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estilos para el menú */
.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.menu-category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.menu-item {
    transition: all 0.4s ease;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.menu-item .card-body {
    padding: 20px;
}

.menu-item .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.menu-item .card-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.menu-item .price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Botón de ver carta completa */
.btn-view-menu {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-view-menu:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(180, 140, 60, 0.2);
}

.btn-view-menu:hover:before {
    left: 0;
}

/* Estilos para el equipo */
.team-card {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-card img {
    transition: all 0.4s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 25px;
}

.team-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .bio {
    color: #666;
    font-size: 0.9rem;
}

/* Sección de contacto */
.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 15px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 0;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

footer a {
    color: #ccc;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Efectos especiales */
.hover-shadow {
    transition: all 0.4s ease;
}

.hover-shadow:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Ajustes responsivos */
@media (max-width: 1199.98px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-link {
        margin: 5px 0;
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-card img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-outline-light, .btn-view-menu {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .menu-category-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    footer {
        padding: 40px 0 15px;
        text-align: center;
    }
    
    footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .col-md-4 {
        margin-bottom: 30px;
    }
    
    .team-card img {
        height: 200px;
    }
}
#color {
background-color: #d35400
};