/* =========================================
   ABOUT PAGE: AUTHORITATIVE LAYOUT
========================================= */

/* --- 1. SOLID PREMIUM HERO --- */
.auth-hero {
    background-color: #8b0000; /* Deep Authoritative Red/Saffron */
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.auth-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.auth-hero-breadcrumb {
    font-size: 1rem;
    font-weight: 500;
}

.auth-hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.auth-hero-breadcrumb a:hover {
    color: #fcccba;
}

/* --- 2. ORGANIZATION SECTION --- */
.auth-org-section {
    padding: 80px 0;
    background: #ffffff;
}

.auth-org-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* The vertical text area */
.auth-org-vertical {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.auth-org-vertical .vertical-line {
    width: 4px;
    height: 100px;
    background-color: #d32f2f;
}

.auth-org-vertical .vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Text Content Area */
.auth-org-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-org-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.auth-org-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Image Area */
.auth-org-image {
    flex: 1;
    position: relative;
}

.auth-org-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* --- 3. EXTENDED TEXT & BANNER --- */
.auth-extended-text {
    padding: 40px 0 60px;
    background: #ffffff;
}

.auth-extended-text p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.auth-banner-image {
    width: 100%;
    height: 450px;
    background-image: url('../../images/gender awaords all photosa/EM_07664.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}


/* --- 4. VISION & MISSION SECTION --- */
.auth-vm-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(250,250,250,0.92), rgba(250,250,250,0.92)), url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.auth-vm-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Left Titles */
.auth-vm-titles {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
    width: 250px;
    position: relative;
    padding-right: 30px;
}

/* The vertical divider line */
.auth-vm-titles::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #d32f2f 30%, #333 30%);
}

.auth-vm-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    position: relative;
    cursor: default;
}

/* Add a subtle hover effect to the titles */
.auth-vm-title:hover {
    color: #d32f2f;
}

/* Right Content */
.auth-vm-content {
    flex: 1;
}

.auth-vm-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    text-align: justify;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}


/* --- 5. BOARD OF DIRECTORS --- */
.auth-team-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.auth-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.auth-team-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.auth-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.auth-team-card {
    text-align: center;
    background: #f9f9f9;
    padding: 30px;
    border-top: 5px solid #d32f2f;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.auth-team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-team-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.auth-team-card span {
    color: #d32f2f;
    font-weight: 600;
    font-size: 0.95rem;
}


/* =========================================
   MOBILE RESPONSIVE UPDATES (UNIQUE LAYOUT)
========================================= */
@media (max-width: 991px) {
    /* Hero */
    .auth-hero { padding: 120px 20px 60px; }
    .auth-hero h1 { font-size: 2.5rem; }
    
    /* Org Section - Stack Everything */
    .auth-org-container {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Hide Vertical text on mobile or make it horizontal */
    .auth-org-vertical {
        flex-direction: row;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .auth-org-vertical .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 2px;
    }
    
    .auth-org-vertical .vertical-line {
        width: 50px;
        height: 4px;
    }
    
    .auth-org-content h2 {
        font-size: 2.2rem;
    }
    
    /* Full Width Banner */
    .auth-banner-image {
        height: 250px;
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
    
    /* Vision Mission Section */
    .auth-vm-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .auth-vm-titles {
        width: 100%;
        text-align: left;
        padding-right: 0;
        padding-left: 20px;
        flex-direction: row;
        gap: 20px;
        border-left: 4px solid #d32f2f;
    }
    
    .auth-vm-titles::after {
        display: none;
    }
    
    .auth-vm-title {
        font-size: 1.4rem;
    }
    
    .auth-vm-content p {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Team */
    .auth-team-grid {
        grid-template-columns: 1fr;
    }
}
