/* About Banner Section - Premium Design */

.about-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    margin-top: 0;
    padding-top: 0;
}

/* Banner Background */
.about-banner-bg {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 50%, #3d2817 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10,50 Q50,10 90,50 Q50,90 10,50" fill="none" stroke="rgba(212,165,116,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
    padding: 80px 20px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Text Styles */
.about-banner-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #d4a574;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-banner-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 72px;
    color: #ffffff;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-banner-description {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #c9c9c9;
    margin: 20px 0;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-banner-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    margin: 30px auto;
    animation: scaleIn 0.8s ease-out 0.8s both;
}

@keyframes scaleIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Content Section */
.about-banner-content-section {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
}

.about-banner-content-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

/* Intro Text */
.about-intro-text {
    text-align: center;
    /* margin-bottom: 80px; */
    animation: fadeIn 0.8s ease-out;
}

.about-intro-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Timeline Section */
.about-timeline {
    margin-top: 60px;
}

.timeline-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid #d4a574;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.timeline-card:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-card:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.timeline-card-featured {
    transform: scale(1.02);
    border-top: 4px solid #c99560;
}

.timeline-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
}

/* Timeline Year */
.timeline-year {
    font-family: 'Kaushan Script', cursive;
    font-size: 48px;
    color: #d4a574;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Timeline Icon */
.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #c99560);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Timeline Title */
.timeline-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #333333;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Timeline Description */
.timeline-description {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* Divider between sections */
.about-banner-content-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-banner-bg {
        height: 400px;
    }

    .about-banner-title {
        font-size: 52px;
    }

    .about-banner-subtitle {
        font-size: 24px;
    }

    .about-banner-content {
        padding: 60px 20px;
    }

    .timeline-card {
        padding: 30px 25px;
    }

    .timeline-year {
        font-size: 40px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-description {
        font-size: 13px;
    }

    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-banner-bg {
        height: 350px;
    }

    .about-banner-title {
        font-size: 40px;
        margin-top: 15px;
    }

    .about-banner-subtitle {
        font-size: 20px;
    }

    .about-banner-description {
        font-size: 16px;
    }

    .about-banner-content {
        padding: 50px 15px;
    }

    .about-banner-content-section {
        padding: 60px 0;
    }

    .about-intro-text {
        margin-bottom: 50px;
    }

    .about-intro-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .timeline-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .timeline-card-featured {
        transform: scale(1);
    }

    .timeline-card-featured:hover {
        transform: translateY(-8px);
    }

    .timeline-year {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .timeline-title {
        font-size: 18px;
        margin: 15px 0;
    }

    .timeline-description {
        font-size: 12px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .about-banner-bg {
        height: 280px;
    }

    .about-banner-title {
        font-size: 32px;
        margin-top: 10px;
    }

    .about-banner-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-banner-description {
        font-size: 14px;
    }

    .about-banner-content {
        padding: 40px 10px;
    }

    .about-banner-divider {
        width: 60px;
        margin: 20px auto;
    }

    .about-banner-content-section {
        padding: 40px 0;
    }

    .about-intro-text {
        margin-bottom: 30px;
    }

    .about-intro-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-timeline {
        margin-top: 30px;
    }

    .timeline-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .timeline-year {
        font-size: 28px;
    }

    .timeline-title {
        font-size: 16px;
        margin: 12px 0;
    }

    .timeline-description {
        font-size: 11px;
        line-height: 1.6;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
