/*
*   Mariscos Cabo Seafood - About Page Styles
*/

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.page-hero-content .subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-images {
    position: relative;
    height: 500px;
}

.story-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: auto;
    max-height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.story-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: auto;
    max-height: 70%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
    z-index: 2;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* Team Section */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.team-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* CTA Section */
.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 991.98px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .story-images {
        height: 400px;
        order: -1;
    }
    
    .team-image {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-images {
        height: 300px;
        width: 100%;
        min-height: 250px;
    }
    
    .story-img-1 {
        width: 75%;
        max-height: 200px;
        display: block;
    }
    
    .story-img-2 {
        width: 65%;
        max-height: 180px;
        display: block;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

