/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    /* Nueva paleta de colores */
    --primary-color: #5D4037;
    --secondary-color: #FFB300;
    --background-color: #FFF8E1;
    --text-color: #2C1810;
    --light-text: #5D4037;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--background-color);
    padding: 80px 0;
    position: relative;
    background-image: url(/static/img/magdalena.png);
    background-repeat: no-repeat;
    background-size: 15% auto;
    background-position: calc(100% - 20%) 15%;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-color);
}

/* Stats Section */
.stats-section {
    background-color: white;
}

.stats-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stats-section h3 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    background-color: var(--background-color);
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Gallery Section */
.gallery-section img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Thanks Section */
.thanks-section {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.thanks-section h2 {
    color: var(--background-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    position: relative;
    background-image: url(/static/img/magdalena.png);
    background-repeat: no-repeat;
    background-size: 10% auto;
    background-position: calc(100% - 5%) 2%;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--background-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .stats-section .col-md-3 {
        margin-bottom: 2rem;
    }
}

/* Image Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;

/* Catalog Section */
.catalog-section {
    background-color: var(--background-color);
    position: relative;
}

.catalog-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.catalog-section .accordion-button {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding: 1.2rem;
}

.catalog-section .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.catalog-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.catalog-section .list-group-item {
    border-left: none;
    border-right: none;
    transition: background-color 0.3s ease;
}

.catalog-section .list-group-item:hover {
    background-color: rgba(255, 179, 0, 0.1);
}


}

body {
   
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: -1;
}

/* Hero Header */
.hero-section h1 {
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Artisanal styling */
.gallery-section img, .about-section img {
    transform: rotate(var(--tilt-angle, -2deg));
    border: 10px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.hero-section img {
    border: 10px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.gallery-section .col-md-4:nth-child(2) img { --tilt-angle: 2deg; }
.gallery-section .col-md-4:nth-child(3) img { --tilt-angle: -2deg; }
.about-section img { --tilt-angle: -1deg; }

.gallery-section .col-md-4:nth-child(1)::before { --tape-angle: -5deg; }
.gallery-section .col-md-4:nth-child(2)::before { --tape-angle: 3deg; }
.gallery-section .col-md-4:nth-child(3)::before { --tape-angle: -4deg; }
