/* ==========================================================================
   ZEUS EVENT - CLEAN & CLASSIC ABOUT CSS
   ========================================================================== */

:root {
    --primary-color: #0a0a0a;
    --accent-color: #c5a059;
    /* Zeus Gold */
    --text-color: #666;
    --heading-color: #333;
    --bg-light: #EEF2F2;
}

body.about-page {
    background: var(--bg-light);
    letter-spacing: -0.04em;
    /* Global letter spacing per request */
}

/* --- Page Title Area (Hero) --- */
.page-title-area {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay to ensure text readability */
.overlay-dark::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.sub-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.page-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .current {
    color: var(--accent-color);
}

/* General Section Styles */
.section-padding {
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .page-title-area {
        padding: 120px 0 80px;
    }
}

/* About Content Section */
.about-content-area {
    background-color: transparent;
}

.about-section {
    padding: 0 0 80px 0;
    flex: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
    margin-top: 64px;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    /* Increased from 12px */
    box-shadow: none;
    /* Removed shadow */
    /* Softer shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Darker border for light bg */
}

.about-img-wrapper img:hover {
    transform: translateY(-5px);
}

.about-text-wrapper {
    color: #444;
    /* Darker text for readability on light bg */
}

.about-main-title {
    font-size: 48px;
    font-weight: 700;
    /* Bold */
    color: #243333;
    /* Requested color */
    letter-spacing: -0.07em;
    /* -8% */
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #243333;
    /* Updated color */
    position: relative;
    padding-bottom: 0;
    /* Removed padding for underline space */
    margin-bottom: 30px;
    letter-spacing: -0.07em;
}

.section-heading::after {
    display: none;
    /* Remove underline */
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A6464;
    /* Updated color */
    text-align: left;
    /* Fixed irregular spacing */
    font-weight: 500;
    word-spacing: 2px;
    /* Increased word spacing per request */
}

@media (max-width: 991px) {
    .about-text-wrapper {
        padding-left: 0 !important;
        margin-top: 30px;
    }

    .section-heading {
        font-size: 28px;
    }
}

/* --- Animated Header Styles (Ported from Planner) --- */
.animated-header-wrapper {
    text-align: center;
    margin: 0 auto 40px auto;
    /* Centered with bottom spacing */
}

.animated-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Changed from center to left */
    gap: 0px;
    /* Maintain existing section-heading styles if needed, or override */
}

/* Override padding/margin from section-heading if used together, 
   or ensure it fits the flex layout */

.animated-section-title span {
    --total: calc(var(--duration) + var(--delay));
    position: relative;
    display: inline-block;
    color: transparent;
    overflow: hidden;
    animation: revealText 1s var(--total) forwards;
}

.animated-section-title span::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    background: #5b8e8e;
    /* Match site header color or keep custom */
    animation:
        rollIn var(--duration) var(--delay) forwards,
        rollOut var(--duration) var(--total) forwards;
}

.animated-section-title span:nth-child(2)::after {
    border-top: 1px solid #fff;
}

@keyframes revealText {
    to {
        color: #fff;
    }
}

@keyframes rollIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes rollOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(105%);
    }
}