/*
Theme Name: Maya Kakaw Travel Tailwind
Theme URI: 
Author: AI Assistant
Description: Custom Tailwind-based travel theme for Maya Kakaw Travel based on dise.html
Version: 2.0
*/

:root {
    --cacao: #3D2B1F;
    --selva: #2D4034;
    --terracota: #C05746;
    --crema: #F9F7F2;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--crema);
    color: var(--cacao);
    scroll-behavior: smooth;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(61, 43, 31, 0.8) 100%);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--terracota);
    transition: width 0.3s ease;
}

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

.card-zoom:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--terracota);
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--cacao);
    transform: translateY(-2px);
    color: white;
}

/* Texturas sutiles */
.pattern-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233d2b1f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Botón de WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

#mobile-menu {
    display: none;
}

#mobile-menu.active {
    display: flex;
}

/* Specific inner page styling */
.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(61,43,31,0.5) 0%, rgba(61,43,31,0.8) 100%);
    z-index: 1;
}

.inner-content-wrapper {
    background: white;
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: -80px auto 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}
.entry-content p {
    margin-bottom: 1.5rem;
}
.entry-content h2, .entry-content h3 {
    color: var(--cacao);
    font-family: var(--font-heading);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.entry-content strong {
    color: var(--cacao);
    font-weight: 600;
}
.entry-content a {
    color: var(--terracota);
    text-decoration: underline;
}
