body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F8F7F2; 
    color: #2C3E50;
}
h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Lora', serif;
}
.hero-bg {
    background-image: url('fotos/foto1.jpg');
    background-size: cover;
    background-position: center;
}
.btn-primary {
    background-color: #274c43; 
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 0.375rem;
}
.btn-primary:hover {
    background-color: #1e3a34;
    transform: translateY(-2px);
}

.menu-tab {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6b7280;
}
.menu-tab.active {
    color: #274c43;
    font-weight: 700;
    border-bottom-color: #274c43;
}
.menu-content {
    display: none;
}
.menu-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0.5rem;
}
.gallery-item img {
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

#lightbox {
    transition: opacity 0.3s ease;
}
#lightbox-content {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.95);
    opacity: 0;
}
#lightbox.open #lightbox-content {
    transform: scale(1);
    opacity: 1;
}
