/*
Theme Name: Carpintería Gutiérrez
Author: J.F.
Version: 1.0
Description:
*/

:root {
    --brand-dark: #1c1917; 
    --brand-wood: #c2410c; 
    --bg-warm: #fafaf9; 
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-warm);
}
.serif {
    font-family: 'Lora', serif;
}
.bg-brand { background-color: var(--brand-dark); }
.text-brand { color: var(--brand-wood); }
.border-brand { border-color: var(--brand-wood); }

.glass-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(194, 65, 12, 0.08); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(28, 25, 23, 0.06);
}

.image-reveal {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .image-reveal {
    transform: scale(1.04);
}

.scroll-mt-24 {
    scroll-margin-top: 6rem;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glass-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(28, 25, 23, 0.06);
}

.image-reveal {
   transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .image-reveal {
    transform: scale(1.04);
}

.group:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.prose h2 { 
    font-size: 1.5rem; 
    font-weight: 700;
    margin-top: 2rem; 
    color: #1c1917;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose ul { 
    list-style: disc; 
    margin-left: 1.5rem; 
    margin-bottom: 1.5rem; 
}