.elementor-352 .elementor-element.elementor-element-cb67aa2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-f346b33 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Belleza', serif;
    color: #000;
    font-weight: normal;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.section-title.centered {
    text-align: center;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #663130;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background-color: #FBEADE;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    color: #663130;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(102, 49, 48, 0.1);
}

/* Values Section */
.values-section {
    background-color: #FBEADE;
    padding: 8rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(102, 49, 48, 0.08);
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    background-color: #663130;
    color: #FBEADE;
    padding: 8rem 0;
    text-align: center;
}

.mission-section .section-title {
    color: #FBEADE;
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.mission-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 5rem 0 4rem;
    }
    
    .story-section,
    .values-section,
    .gallery-section,
    .mission-section {
        padding: 5rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-description,
    .mission-text {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        gap: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
img {
    max-width: 100%;
    height: auto;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid #663130;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-section,
.values-section,
.gallery-section,
.mission-section {
    animation: fadeIn 0.8s ease-out;
}/* End custom CSS */