.elementor-15174 .elementor-element.elementor-element-1e72918{--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;}.elementor-15174 .elementor-element.elementor-element-cb69a9b{--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;}/* Start custom CSS for html, class: .elementor-element-fd45964 *//* About Page Styles - about.css */

/* --- Hero Section --- */
.hero-section {
    background: var(--color-background) url('../images/placeholder-about-hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.9));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-section .hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* --- Story Sections --- */
.story-section {
    padding: 100px 0;
}

.dark-section {
    background-color: var(--color-background);
    color: var(--color-text);
}

.light-section {
    background-color: #f5f5f5;
    color: var(--color-text-dark);
}

.light-section h2 {
    color: var(--color-gold);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background-color: #222;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.centered-content .cta-button {
    margin-top: 2rem;
}

/* Section-specific image placeholders */
.story-section:nth-of-type(2) .story-image {
    background-image: url('../images/placeholder-my-story.jpg');
}

.story-section:nth-of-type(3) .story-image {
    background-image: url('../images/placeholder-awakening.jpg');
}

.story-section:nth-of-type(4) .story-image {
    background-image: url('../images/placeholder-how-started.jpg');
}

.story-section:nth-of-type(5) .story-image {
    background-image: url('../images/placeholder-upgrade.jpg');
}

/* --- Sacred Geometry Container --- */
.sacred-geometry-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.sacred-geometry {
    width: 300px;
    height: 300px;
    background-image: url('../images/placeholder-sacred-geometry.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

/* --- Philosophy Section --- */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--color-background);
    text-align: center;
}

.philosophy-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(176, 141, 87, 0.2);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.philosophy-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.philosophy-card p {
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.6;
}

/* --- Vision Section --- */
.vision-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    color: var(--color-text-dark);
}

.vision-section h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 60px;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-image {
    flex: 1;
    min-height: 400px;
    background-color: #ddd;
    background-image: url('../images/placeholder-vision.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vision-text .cta-button {
    margin-top: 1rem;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .story-content,
    .vision-content {
        gap: 40px;
    }
    
    .philosophy-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .story-section {
        padding: 70px 0;
    }
    
    .story-content,
    .vision-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .light-section .story-content {
        flex-direction: column-reverse;
    }
    
    .story-image,
    .vision-image {
        width: 100%;
        min-height: 300px;
    }
    
    .sacred-geometry {
        width: 250px;
        height: 250px;
    }
    
    .philosophy-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .story-section {
        padding: 50px 0;
    }
    
    .story-image,
    .vision-image {
        min-height: 250px;
    }
    
    .sacred-geometry {
        width: 200px;
        height: 200px;
    }
}/* End custom CSS */