/* About Page Styles */

:root {
    --about-bg: #ffffff;
    --about-text: #333333;
    --about-mute: #666666;
    --about-title: #000000;
    --about-accent: #f39c12; /* Gold */
    --about-quote-bg: #b00000; /* Red */
    --about-card-shadow: rgba(0,0,0,0.1);
}

.dark-theme {
    --about-bg: #121212;
    --about-text: #cccccc;
    --about-mute: #888888;
    --about-title: #ffffff;
    --about-accent: #ffc107;
    --about-quote-bg: #8b0000;
    --about-card-shadow: rgba(0,0,0,0.5);
}

.about-page-wrapper {
    background-color: var(--about-bg);
    color: var(--about-text);
    transition: background-color 0.4s ease, color 0.4s ease;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding-bottom: 50px;
}

/* Floating Theme Switcher */
.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--about-accent);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px var(--about-card-shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}
.theme-switcher:hover { transform: scale(1.1); }
.theme-switcher:active { transform: scale(0.9); }

.banner-section {
    background: #000;
    overflow: hidden;
}

.bg-about {
    background: var(--about-bg);
}

.about-banner-img {
    max-height: 800px; 
    width: auto; 
    display: block; 
    margin: 0 auto; 
    object-fit: contain;
}

.page-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Headings */
.page-content h3 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--about-title);
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.page-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--about-accent);
    border-radius: 2px;
}

/* Paragraphs */
.page-content p {
    margin-bottom: 1.5rem;
    color: var(--about-text);
}

/* Images & Captions */
.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--about-card-shadow);
}
.image-wrapper img {
    transition: transform 0.5s ease;
}
.image-wrapper:hover img {
    transform: scale(1.03);
}

.caption {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--about-mute);
}

/* Quote Box */
.quote-box {
    background-color: var(--about-quote-bg);
    color: #fff;
    padding: 3rem;
    border-radius: 4px;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 10px 30px var(--about-card-shadow);
    position: relative;
}
.quote-box p {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    color: #fff !important;
}
.quote-box::before {
    content: '\f66d';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    opacity: 0.15;
}

/* Dark Mode Body Override */
body.is-dark {
    background-color: #121212 !important;
}
