/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES - COOL RUNNINGS PARITY
   ========================================================================== */

.about-page-body {
    background-color: #0b2230; /* Dark background to match image load transitions */
}

/* Full-Screen About Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset absolute main-header */
    overflow: hidden;
}

/* Semi-transparent Dark overlay over the entire image background */
.about-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 28, 0.35); /* Subtle dark film */
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2; /* Put above overlay */
}

/* Translucent Blue Card (Cool Runnings Glassmorphism Style) */
.about-glass-card {
    background: rgba(23, 103, 162, 0.65); /* Translucent Royal Blue */
    backdrop-filter: blur(12px) saturate(110%);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 55px;
    color: var(--white-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-glass-card .card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffd700; /* Gold */
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-glass-card h1 {
    font-family: var(--primary-font);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    color: var(--white-color);
}

.about-glass-card .card-line {
    width: 60px;
    height: 2px;
    background-color: #ffd700;
    margin: 20px 0 30px 0;
}

.about-glass-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 22px;
}

.about-glass-card p:last-of-type {
    margin-bottom: 35px;
}

/* Button with line-border */
.card-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-action-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.card-action-btn:hover {
    background: var(--white-color);
    color: #1767a2; /* blue text on white hover */
    border-color: var(--white-color);
}

.card-action-btn:hover i {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */

@media (max-width: 992px) {
    .about-hero-section {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .about-glass-card {
        padding: 45px;
    }
    
    .about-glass-card h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .about-glass-card {
        padding: 35px 25px;
    }
    
    .about-glass-card h1 {
        font-size: 34px;
    }
    
    .about-glass-card p {
        font-size: 14.5px;
        line-height: 1.7;
    }
}
