/*
Theme Name: Cafe Nova Era
Author: Antigravity
Description: Tema customizado para Cafe Nova Era (Refatoração React -> PHP)
Version: 1.0
*/

/* Reset e estilos básicos são tratados pelo Tailwind, 
   mas podemos adicionar overrides aqui se necessário. */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: #DAA520;
    /* Aproximação do dourado da imagem */
}

.bg-gold {
    background-color: #DAA520;
}

.hover\:bg-gold-dark:hover {
    background-color: #B8860B;
}

/* Efeito de sombra suave no texto sobre imagem */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Lightbox Open State to prevent scrolling */
body.lightbox-open {
    overflow: hidden;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background-color: #ffffff !important;
    opacity: 0.5 !important;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #DAA520 !important; /* Gold */
    opacity: 1 !important;
    width: 12px;
    height: 12px;
}