/* Custom Styles for Torrealba Joyas */

body { 
    background-color: #ffffff; 
    color: #111111; 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
}

.material-symbols-outlined { 
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; 
}

/* Animations */
@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-zoom {
    animation: zoomInOut 20s infinite ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Scroll reveal utility classes used by JS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility to ensure minimum body height */
body {
    min-height: max(884px, 100dvh);
}

/* Universal Page Headers */
.page-header-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 36px;
    color: #111111;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}
@media (min-width: 768px) {
    .page-header-title {
        font-size: 52px;
    }
}

.page-header-desc {
    font-family: 'Inter', sans-serif;
    color: rgba(17, 17, 17, 0.8);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    font-size: 16px;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .page-header-desc {
        font-size: 18px;
    }
}