/* 
   ==========================================================================
   VIP THEME - ABOUT US STYLES
   ==========================================================================
*/

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/images/safari_landscape3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 16px;
    color: var(--theme-white);
}

.about-hero-content {
    max-width: 900px;
    z-index: 10;
}

.about-hero h1 {
    font-size: 56px;
    color: var(--theme-white);
    margin-bottom: 16px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.about-hero p {
    font-size: 20px;
    color: rgba(245, 245, 245, 0.9);
    text-align: center;
}

/* About Grid Sections */
.section-block {
    padding: 24px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.eyebrow {
    color: var(--theme-orange);
    text-transform: uppercase;
    font-family: var(--font-ui);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 40px;
    margin: 0 0 24px 0;
    text-align: left;
}

.about-text p {
    color: #111;
    margin-bottom: 24px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--header-radius);
    box-shadow: var(--header-shadow);
    object-fit: cover;
    max-height: 500px;
}

/* Experience Grid (Cards) */
.section-heading h2 {
    font-size: 40px;
    color: var(--theme-black);
    margin-bottom: 48px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.info-card {
    background: var(--theme-white);
    padding: 48px 32px;
    border-radius: var(--header-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform var(--header-transition), box-shadow var(--header-transition);
    text-align: center;
    border-top: 4px solid var(--theme-green);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    color: var(--theme-orange);
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.info-card p {
    color: #333;
    font-size: 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 40px;
    }
}

/* =========================================
   Split Sections (Text + Image Side-by-Side)
   ========================================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5%;
}

.story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-copy h2 {
    font-size: 40px;
    margin: 0 0 24px 0;
}

.story-copy p {
    color: #111;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.story-copy .eyebrow {
    margin-bottom: 16px;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: var(--header-radius);
    box-shadow: var(--header-shadow);
    overflow: hidden;
}

.story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

/* Primary Button */
.primary-button {
    display: inline-block;
    background-color: var(--theme-orange);
    color: var(--theme-black);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-orange);
    margin-top: 24px;
}

.primary-button:hover {
    background-color: transparent;
    color: var(--theme-orange);
}

/* Responsive Split Sections */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .story-copy {
        padding: 0;
    }
    
    .story-image {
        grid-row: 1; /* Force image to top on mobile */
    }
}

