body{
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #333;
}
.hero{
    background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%),
    url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size:cover;
    height: 100vh;
    width: 100%;
}
.container-wrapper{
    backdrop-filter: blur(2.5px);
    height: 100vh;
}
.container{
    padding-left: 30px;
    padding-top: 120px;
    padding-right: 30px;
    padding-bottom: 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    width: 40%;
    height: 100vh;
}
.container h1{
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: right;
}
.artist-profile img{
    display: flex;
    align-items: center;
    height: 150px;
    width: auto;
    border-radius: 150%;
    margin-bottom: 30px;
}
.name{
    font-size: 32px;
    font-weight: 500;
}
.occupation{
    font-size: 20px;
    font-weight: 300;
    color: #b8b8b8;
}
.bio-text{
    font-size: 21px;
    font-weight: 200;
    margin-top: 20px;
    margin-right: 20px;
}









/*Timeline*/
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.header {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.header h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.header p {
    font-size: 1.2rem;
    color: #ffffff;
    font-style: italic;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3498db, #e74c3c, #f39c12, #2ecc71);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-item.animate {
    animation: slideInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
    margin-right: 0;
}
.timeline-content {
    background: linear-gradient(to left, #ffffff 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-content.gallery {
    background: linear-gradient(to right, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
    border: 4px solid #3498db;
}

.timeline-content.event {
    background: linear-gradient(to right, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.1));
    border: 4px solid #e74c3c;
}

.timeline-content.international {
    background: linear-gradient(to right, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.1));
    border: 4px solid #f39c12;
}

.timeline-content.award {
    background: linear-gradient(to right, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
    border: 4px solid #2ecc71;
}

.timeline-content.illustration {
    background: linear-gradient(to right, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.1));
    border: 4px solid #9b59b6;
}

/* Update the hover effects for each category */
.timeline-content.gallery:hover {
    background: linear-gradient(to right, rgba(52, 152, 219, 0.3), rgba(52, 152, 219, 0.2));
}

.timeline-content.event:hover {
    background: linear-gradient(to right, rgba(231, 76, 60, 0.3), rgba(231, 76, 60, 0.2));
}

.timeline-conten.international:hover {
    background: linear-gradient(to right, rgba(243, 156, 18, 0.3), rgba(243, 156, 18, 0.2));
}

.timeline-content.award:hover {
    background: linear-gradient(to right, rgba(46, 204, 113, 0.3), rgba(46, 204, 113, 0.2));
}

.timeline-content.illustration:hover {
    background: linear-gradient(to right, rgba(155, 89, 182, 0.3), rgba(155, 89, 182, 0.2));
}

        /* .timeline-item:nth-child(odd) .timeline-content::before {
            content: '';
            position: absolute;
            right: -15px;
            top: 30px;
            border: 15px solid transparent;
            border-left-color: #fff;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 30px;
            border: 15px solid transparent;
            border-right-color: #fff;
        } */

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-marker.gallery {
    background: #3498db;
    box-shadow: 0 0 0 5px rgba(52, 152, 219, 0.3);
}

.timeline-marker.event {
    background: #e74c3c;
    box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.3);
}

.timeline-marker.international {
    background: #f39c12;
    box-shadow: 0 0 0 5px rgba(243, 156, 18, 0.3);
}

.timeline-marker.award {
    background: #2ecc71;
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.3);
}

.timeline-marker.illustration {
    background: #9b59b6;
    box-shadow: 0 0 0 5px rgba(155, 89, 182, 0.3);
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.3);
}

.year {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.category.gallery {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.category.event {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.category.international {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.category.award {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.category.illustration {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.event-title {
    font-size: 1.3rem;
    font-weight: bold;
    /* color: #2c3e50; */
    color: #fff;
    margin-bottom: 8px;
}

.event-details {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.5;
}

.event-location {
    font-style: italic;
    margin-top: 5px;
}

.isbn {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 5px;
    display: inline-block;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /*.timeline::before {
        left: 20px;
    } */

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 20px;
        text-align: left;
    }

    /* .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-left-color: transparent;
        border-right-color: #fff;
    } */

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .year {
        font-size: 1.5rem;
        color: #fff;
    }
}
