/* Om page styles */
.om-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/venue/stromtangen1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.om-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.om-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.om-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.origin-story {
    max-width: 900px;
    margin: 0 auto;
}

.founders-image {
    margin-bottom: 2rem;
    position: relative;
}

.founders-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    color: #666;
}

.story-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-chapter {
    margin-bottom: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.story-chapter:nth-child(odd) {
    flex-direction: row;
}

.story-chapter:nth-child(even) {
    flex-direction: row-reverse;
}

.chapter-content {
    flex: 1;
    min-width: 300px;
}

.chapter-image {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-chapter h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: sans-serif, 'Proxima Nova';
}

.story-chapter p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.quote-container {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
}

.cta-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
}

.cta-container h3 {
    margin-bottom: 1rem;
    color: white;
}

.cta-container p {
    margin-bottom: 1.5rem;
}

.cta-container .btn {
    background: white;
    color: var(--primary-color);
}

.cta-container .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .om-hero h1 {
        font-size: 2.5rem;
    }
    
    .om-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-chapter {
        flex-direction: column !important;
    }
    
    .chapter-image {
        width: 100%;
        flex: 0 0 250px;
        height: 250px;
    }
    
    .story-chapter p {
        font-size: 1rem;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .om-hero h1 {
        font-size: 2rem;
    }
    
    .quote-container {
        padding: 1.5rem;
    }
    
    .cta-container {
        padding: 1.5rem;
    }
    
    .chapter-image {
        flex: 0 0 200px;
        height: 200px;
    }
}
