/* PREMIUM ABOUT PAGE STYLES */

/* Hero Section with Parallax Feel */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    color: #fff;
    margin-bottom: 4rem;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../images/movement.png') no-repeat center center/cover;
    opacity: 0.2;
    filter: grayscale(100%);
    z-index: 0;
    animation: slowZoom 20s infinite alternate;
}

.about-hero-content {
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* Values Grid Upgrade */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
}

.about-card {
    background: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-top-color: #D4AF37;
}

.about-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.about-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section (SEO Rich) */
.timeline-section {
    background: #f9f9f9;
    padding: 6rem 2rem;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #D4AF37;
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* FAQ Section Styling */
.faq-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.faq-item summary {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
        margin-top: 1rem;
    }
}

/* =========================================
   HISTORY GALLERY (REPLACEMENT FOR TIMELINE)
   ========================================= */
.history-gallery-section {
    padding: 6rem 2rem;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 10s ease;
    transform: scale(1.1);
    /* Zoom effect start */
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    /* Zoom in slowly */
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.gallery-caption-overlay {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 2;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.gallery-slide.active .gallery-caption-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-year {
    display: inline-block;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.gallery-title {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Controls */
.gallery-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

/* Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #D4AF37;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-wrapper {
        height: 500px;
    }

    .gallery-caption-overlay {
        bottom: 120px;
        /* Above controls */
        left: 20px;
        right: 20px;
    }

    .gallery-year {
        font-size: 3rem;
    }

    .gallery-controls {
        bottom: 20px;
        right: 20px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}