/* CSS Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair', serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

/* Header and Hero Unified Background */
.header-hero-wrapper {
    background-color: #000000e6;
    background-image: url('../images/collage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: color-burn;
    position: relative;
}

.header-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Header Styles - Mobile First */
.header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
    z-index: 4;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation Styles */
.nav {
    position: relative;
}

/* Hamburger Button - Mobile */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.nav-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation - Active State */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #000;
    font-family: 'Playfair', serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: #f8f9fa;
    color: #000;
    outline: none;
}

/* Desktop Styles - 768px and up */
@media (min-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 2rem;
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 2rem;
    }

    .logo-img {
        height: 50px;
    }

    /* Hide hamburger button on desktop */
    .nav-toggle {
        display: none;
    }

    /* Show navigation menu horizontally - centered */
    .nav-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 0;
        justify-content: center;
    }

    .nav-menu li {
        border-bottom: none;
        margin-left: 2rem;
    }

    .nav-menu li:first-child {
        margin-left: 0;
    }

    .nav-menu a {
        padding: 0.5rem 0;
        position: relative;
        font-family: 'Playfair', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background-color: transparent;
        color: #fff;
    }
}

/* Large desktop styles */
@media (min-width: 1024px) {
    .header-container {
        padding: 0 3rem;
    }

    .logo {
        left: 3rem;
    }

    .nav-menu li {
        margin-left: 3rem;
    }
}

/* Main 
Content Styles */
main {
    font-family: 'Playfair', serif;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair', serif;
    color: #000;
    font-weight: 600;
}

p {
    font-family: 'Playfair', serif;
    color: #000;
}

/* Section styling */
section {
    font-family: 'Playfair', serif;
}

section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

section p {
    font-size: 1.1rem;
    color: #000;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Hero Images */
.hero-image {
    position: absolute;
    width: 300px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image-left {
    left: 19%;
    top: 45%;
    transform: translateY(-50%);
}

.hero-image-right {
    right: 19%;
    top: 45%;
    transform: translateY(-50%);
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive hero section */
@media (max-width: 1024px) {
    .hero-image {
        width: 250px;
        height: 400px;
    }

    .hero-image-left {
        left: 2%;
        top: 50%;
    }

    .hero-image-right {
        right: 2%;
        top: 50%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-image {
        width: 180px;
        height: 300px;
    }

    .hero-image-left {
        left: 2%;
        top: 45%;
    }

    .hero-image-right {
        right: 2%;
        top: 55%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-image {
        width: 120px;
        height: 200px;
    }

    .hero-image-left {
        left: 1%;
        top: 40%;
    }

    .hero-image-right {
        right: 1%;
        top: 60%;
    }
}

/* Event Card Styles */
.event-card {
    background: #000000d8;
    padding: 2.5rem 2rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1.2s ease-out 0.5s forwards;
}

/* Keyframe animation for slide-in effect */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-title {
    font-family: 'Playfair', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.event-details {
    margin-bottom: 2rem;
}

.event-date,
.event-venue {
    font-family: 'Playfair', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0.5rem 0;
}

.register-btn {
    background: transparent;
    color: #fff;
    font-family: 'Playfair', serif;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1.2rem 3rem;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive event card */
@media (max-width: 768px) {
    .event-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .event-title {
        font-size: 2.2rem;
    }

    .event-date,
    .event-venue {
        font-size: 1.5rem;
    }

    .register-btn {
        font-size: 1.3rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .event-card {
        padding: 1.5rem 1rem;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .event-date,
    .event-venue {
        font-size: 1.3rem;
    }

    .register-btn {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
}

/* Statisti
cs Section */
.stats-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Playfair', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-family: 'Playfair', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    text-transform: lowercase;
}

/* Responsive statistics */
@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    min-height: 70vh;
}

.about-text {
    background-color: #000000e6;
    background-image: url('../images/collage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: color-burn;
    padding: 4rem 8rem 4rem 4rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-title {
    font-family: 'Playfair', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.about-description {
    font-family: 'Playfair', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.about-btn {
    background: transparent;
    color: #fff;
    font-family: 'Playfair', serif;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    align-self: flex-start;
    width: auto;
}

.about-btn:hover {
    background-color: #fff;
    color: #000;
}

.video-container {
    position: relative;
    z-index: 3;
    margin-left: -8rem;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    height: 55vh;
    min-height: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive about section */
@media (max-width: 1024px) {
    .about-section {
        width: 100%;
        margin-left: 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        min-height: auto;
    }

    .about-text {
        padding: 3rem 2rem;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-description {
        font-size: 1rem;
        max-width: 90%;
    }

    .video-container {
        margin-left: 0;
        margin-top: -3rem;
        padding: 3rem 2rem;
    }

    .video-container iframe {
        height: 45vh;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .about-section {
        min-height: auto;
        padding: 0;
    }

    .about-text {
        padding: 2.5rem 1.5rem;
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 95%;
    }

    .about-btn {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }

    .video-container {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
    }

    .video-container iframe {
        height: 35vh;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .about-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .about-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .video-container {
        padding: 1.5rem 1rem;
        margin-top: -1.5rem;
    }

    .video-container iframe {
        height: 30vh;
        min-height: 180px;
    }
}

/* Exhibi
ted Artists Section */
.artists-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.artists-container {
    max-width: 1400px;
    margin: 0 auto;
}

.artists-title {
    font-family: 'Playfair', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: stretch;
}

.artist-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
}

.artist-name {
    font-family: 'Playfair', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.artist-type {
    font-family: 'Playfair', serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    text-transform: capitalize;
}

/* Responsive artists section */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .artists-section {
        padding: 4rem 1rem;
    }

    .artists-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .artist-image {
        height: 250px;
    }

    .artist-info {
        padding: 1.2rem;
    }

    .artist-name {
        font-size: 1.2rem;
    }

    .artist-type {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .artists-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .artist-card {
        max-width: 100%;
    }

    .artist-image {
        height: 220px;
    }

    .artist-info {
        padding: 1rem;
    }

    .artist-name {
        font-size: 1.1rem;
    }
}

/* Sponsors Section */
.sponsors-section {
    padding: 4rem 2rem;
    background-color: #000;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sponsors-title {
    font-family: 'Playfair', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    width: 100%;
    height: 150px;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* .sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
} */

/* Responsive sponsors section */
@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .sponsor-item {
        height: 120px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 4rem 1rem;
    }

    .sponsors-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sponsor-item {
        height: 100px;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sponsors-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sponsor-item {
        height: 80px;
        padding: 0.5rem;
    }
}

/* Register Section */
.register-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.register-container {
    max-width: 800px;
    margin: 0 auto;
}

.register-title {
    font-family: 'Playfair', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.register-description {
    font-family: 'Playfair', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.register-cta-btn {
    background-color: #000;
    color: #fff;
    font-family: 'Playfair', serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-cta-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.register-cta-btn:active {
    transform: translateY(-1px);
}

/* Responsive register section */
@media (max-width: 768px) {
    .register-section {
        padding: 4rem 1rem;
    }

    .register-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .register-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .register-cta-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .register-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .register-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .register-cta-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

/* Footer */
.footer {
    background-color: #000;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-text {
    font-family: 'Playfair', serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-text {
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: transparent;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: 'Playfair', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-hero-description {
    font-family: 'Playfair', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Mission and Vision Section */
.mission-vision-section {
    background-color: #fff;
}

.mission-container,
.vision-container {
    padding: 6rem 2rem;
}

.mission-container {
    background-color: #f8f9fa;
}

.vision-container {
    background-color: #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content {
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out 0.1s forwards;
}

.section-title {
    font-family: 'Playfair', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-description {
    font-family: 'Playfair', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

/* Responsive about page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 1rem 4rem;
        min-height: 50vh;
    }

    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-hero-description {
        font-size: 1.2rem;
    }

    .mission-container,
    .vision-container {
        padding: 4rem 1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        padding: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .section-image {
        height: 400px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    .mission-container,
    .vision-container {
        padding: 3rem 1rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-image {
        height: 320px;
        max-width: 100%;
    }
}

/* Keyframe animation for slide-up with opacity */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Artists Page Styles */
.artists-hero-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.artists-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.artists-hero-title {
    font-family: 'Playfair', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.artists-hero-description {
    font-family: 'Playfair', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Artist Gallery Section */
.artist-gallery-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.artist-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.artist-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.artist-gallery-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist-gallery-card:hover {
    transform: translateY(-5px);
}

.artist-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-gallery-card:hover .artist-gallery-image {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: #fff;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artist-gallery-card:hover .artist-overlay {
    transform: translateY(0);
}

.artist-overlay-name {
    font-family: 'Playfair', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.artist-overlay-type {
    font-family: 'Playfair', serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    opacity: 0.95;
    text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive artists page */
@media (max-width: 768px) {
    .artists-hero-section {
        padding: 4rem 1rem;
        min-height: 60vh;
    }

    .artists-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .artists-hero-description {
        font-size: 1.2rem;
    }

    .artist-gallery-section {
        padding: 4rem 1rem;
    }

    .artist-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .artist-gallery-card {
        height: 350px;
    }

    .artist-overlay {
        padding: 1.5rem;
    }

    .artist-overlay-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .artists-hero-title {
        font-size: 2rem;
    }

    .artists-hero-description {
        font-size: 1.1rem;
    }

    .artist-gallery-grid {
        grid-template-columns: 1fr;
    }

    .artist-gallery-card {
        height: 300px;
    }

    .artist-overlay {
        padding: 1rem;
    }

    .artist-overlay-name {
        font-size: 1.2rem;
    }

    .artist-overlay-type {
        font-size: 0.9rem;
    }
}/*
 Programs Page Styles */
.programs-hero-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-hero-title {
    font-family: 'Playfair', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.programs-hero-description {
    font-family: 'Playfair', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Programs Content Section */
.programs-content-section {
    background-color: #fff;
}

.program-container {
    padding: 6rem 2rem;
}

.program-container:nth-child(even) {
    background-color: #f8f9fa;
}

.program-container:nth-child(odd) {
    background-color: #fff;
}

.program-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-text-content {
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out 0.1s forwards;
}

.program-title {
    font-family: 'Playfair', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    text-align: center;
}

.program-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-image {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

/* Responsive programs page */
@media (max-width: 768px) {
    .programs-hero-section {
        padding: 4rem 1rem;
        min-height: 60vh;
    }
    
    .programs-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .programs-hero-description {
        font-size: 1.2rem;
    }
    
    .program-container {
        padding: 4rem 1rem;
    }
    
    .program-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-text-content {
        padding: 1rem;
        text-align: center;
    }
    
    .program-title {
        font-size: 2.2rem;
    }
    
    .program-image {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .programs-hero-title {
        font-size: 2rem;
    }
    
    .programs-hero-description {
        font-size: 1.1rem;
    }
    
    .program-container {
        padding: 3rem 1rem;
    }
    
    .program-wrapper {
        gap: 1.5rem;
    }
    
    .program-title {
        font-size: 1.8rem;
    }
    
    .program-image {
        height: 280px;
    }
}