/* =========================================
   About Page Specific Styles
   ========================================= */

/* Hero Section */
.about-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Django template tag will go here for the background */
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px; /* Accounts for navbar */
}

.about-hero-box {
    background-color: rgba(45, 45, 45, 0.7);
    padding: 30px 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-hero-box h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.1;
}

/* Quote Section */
.quote-section {
    background-color: var(--bg-light);
    padding: 80px 20px 40px;
    text-align: left;
}

.quote-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}


.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.quote-content h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 500;
}

.quote-content p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.quote-author {
    text-align: right;
    margin-top: 20px;
    font-weight: 500;
}

/* Wave Divider */
.wave-divider {
    width: 100%;
    line-height: 0; 
    margin-bottom: -5px;
    background-color: var(--bg-light);
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* The Rundown Section */
.rundown-section {
    padding: 4rem 1rem;
    text-align: center;
}

.rundown-section h2 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 50px auto;
}

.rundown-section p {
    font-size: 1.15rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Specific overrides for About split sections */
.about-split {
    padding: 50px 10%;
}

.about-split h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-split p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.caption-text {
    font-size: 0.85rem !important;
    color: #999 !important;
    margin-top: 10px !important;
    text-align: left;
    margin-bottom: 0 !important;
}

/* Awards List Spacing */
.award-item {
    margin-bottom: 25px !important;
}

.award-item strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15rem;
}

/* Centered Button Area */
.center-btn-section {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 20px 20px 80px;
}

.btn-blue-outline {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 15px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-blue-outline:hover {
    background-color: #264185; /* Slightly darker blue on hover */
    transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .about-hero-box h1 {
        font-size: 2.5rem;
    }
    
    .quote-content h2 {
        font-size: 2.2rem;
    }
    
    .quote-content h3 {
        font-size: 1.8rem;
    }
    
    .rundown-section, .about-split {
        padding: 40px 5%;
    }
}