/* Paleta de Colores:
Negro: #231f20
Naranja Oscuro: #de8726
Naranja Claro: #f8a300
*/

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    padding-top: 70px; /* Ajuste para el navbar fijo */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* --- Navbar --- */
.navbar {
    background-color: #231f20;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    filter: invert(90%) sepia(60%) saturate(500%) hue-rotate(320deg); /* Aproximación del logo a los tonos naranjas */
}

.nav-link {
    color: #f8a300;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: #de8726;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(35, 31, 32, 0.8), rgba(35, 31, 32, 0.8)), url('https://via.placeholder.com/1920x1080.png?text=Lechon+Fondo') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
}

.hero-section h1 {
    font-weight: 700;
    color: #f8a300;
}

/* --- Botones --- */
.btn-primary {
    background-color: #de8726;
    border-color: #de8726;
    font-weight: bold;
    padding: 12px 30px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f8a300;
    border-color: #f8a300;
}

/* --- Secciones --- */
section {
    padding: 60px 0;
}

h2 {
    color: #231f20;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --- Tarjetas del Menú --- */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #de8726;
    font-weight: bold;
}

/* --- Pestañas del Menú --- */
#menu-tabs .nav-link {
    color: #231f20;
    font-weight: bold;
    border: 2px solid transparent;
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 25px;
}

#menu-tabs .nav-link.active {
    background-color: #de8726;
    color: white;
    border-color: #de8726;
}

#menu-tabs .nav-link:hover:not(.active) {
    color: #de8726;
    background-color: rgba(222, 135, 38, 0.1);
}


/* --- Sección Nosotros --- */
#nosotros {
    background-color: #f9f9f9;
}

/* --- Footer --- */
.footer {
    background-color: #231f20;
    color: #f8a300;
}
.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}
