/* Variables de color */
:root {
    --verde: #0F8F4A;
    --verde-dark: #0A5C2F;
    --verde-light: #E8F5E9;
    --naranja: #F59E0B;
    --naranja-dark: #D97706;
    --negro: #1F2937;
    --gris: #6B7280;
    --gris-light: #F3F4F6;
}

/* Tipografía */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/images/hero/cocina-tradicional.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Navegación */
.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-link:hover {
    color: var(--naranja);
}

.nav-link.active {
    color: var(--naranja);
    font-weight: 600;
}

/* Botones */
.btn-primary {
    background-color: var(--naranja);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--naranja-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid white;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--verde-dark);
}

.btn-secondary-white {
    background-color: white;
    color: var(--verde-dark);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary-white:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.7rem 1.95rem;
}

.btn-outline {
    border: 2px solid var(--naranja);
    color: var(--naranja);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--naranja);
    color: white;
}

/* Tarjetas de recetas */
.recipe-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background: white;
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Blog cards */
.blog-card {
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Redes sociales */
.bg-instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.bg-facebook {
    background: #1877f2;
}

.bg-youtube {
    background: #ff0000;
}

.bg-pinterest {
    background: #e60023;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}