/* ======================================
   MVR Rooms - About Page Styles
   ====================================== */

/* ===== Our Story ===== */
.story-section {
    padding: var(--space-4xl) 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.story-images .img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-images .img-wrapper:first-child {
    grid-row: span 2;
}

.story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-images .img-wrapper:hover img {
    transform: scale(1.05);
}

.story-content .section-label {
    text-align: left;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.2;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.story-highlight {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
}

.highlight-item {
    text-align: center;
}

.highlight-item .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.highlight-item .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Mission & Vision ===== */
.mission-vision {
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.mv-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(198, 169, 98, 0.1), rgba(198, 169, 98, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--gold);
    border: 2px solid rgba(198, 169, 98, 0.2);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.mv-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 var(--space-md);
    position: relative;
}

.mv-card blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -5px;
}

/* ===== Owner Section ===== */
.owner-section {
    padding: var(--space-4xl) 0;
}

.owner-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.owner-image {
    position: relative;
}

.owner-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.owner-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--gold);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm) 0 0 0;
    z-index: -1;
}

.owner-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    border-radius: 0 0 var(--radius-sm) 0;
    z-index: -1;
}

.owner-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.owner-content .owner-title {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
}

.owner-content .owner-message {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
    border-left: 3px solid var(--gold);
}

.owner-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.owner-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    margin-top: var(--space-lg);
}


/* ===== Values Section ===== */
.values-section {
    padding: var(--space-4xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.value-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-md);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
}

.value-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .story-layout,
    .owner-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .story-images {
        max-height: 400px;
    }

    .owner-image {
        text-align: center;
    }

    .owner-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .story-highlight {
        flex-wrap: wrap;
        justify-content: center;
    }
}