/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sophisticated Color Palette */
    --ochre: #D27A07;           /* Warm, earthy orange */
    --ochre-light: #f8991d;     /* Lighter ochre for accents */
    --ochre-dark: #2b1901;      /* Dark ochre for depth */
    --cadet-gray: #96A4B7;      /* Sophisticated gray */
    --cadet-gray-light: #d5dae2; /* Light cadet gray */
    --cadet-gray-dark: #1b2027;  /* Dark cadet gray */
    --kelly-green: #6DA528;     /* Natural, vibrant green */
    --kelly-green-light: #8ccf3a; /* Light kelly green */
    --kelly-green-dark: #162108;  /* Dark kelly green */
    --platinum: #D8D9DD;        /* Clean, neutral platinum */
    --platinum-light: #f7f8f8;  /* Very light platinum */
    --platinum-dark: #292a2f;   /* Dark platinum */
    --true-blue: #3D6DA6;       /* Rich, professional blue */
    --true-blue-light: #5b8ac2; /* Light true blue */
    --true-blue-dark: #0c1622;  /* Dark true blue */
    
    /* Neutral Colors */
    --text-dark: #1b2027;
    --text-light: #7b7e8c;
    --bg-light: #f7f8f8;
    --bg-white: #ffffff;
    --bg-dark: #0c1622;
    
    /* Typography */
    --font-primary: 'Quicksand', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-artistic: 'Dancing Script', cursive;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Organic Background Shapes */
.organic-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--true-blue), var(--ochre));
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--ochre), var(--kelly-green));
    top: 60%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--kelly-green), var(--true-blue));
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--ochre-light), var(--ochre));
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--true-blue), var(--cadet-gray-dark));
    bottom: -125px;
    right: -125px;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--cadet-gray-dark);
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--ochre);
    color: var(--platinum-light);
}

.btn-primary:hover {
    background: var(--ochre-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(210, 122, 7, 0.4);
}

.btn-secondary {
    background: var(--true-blue);
    color: var(--platinum-light);
}

.btn-secondary:hover {
    background: var(--true-blue-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(61, 109, 166, 0.4);
}

.btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(210, 122, 7, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(210, 122, 7, 0.6), 0 0 0 10px rgba(210, 122, 7, 0.1); }
    100% { box-shadow: 0 8px 25px rgba(210, 122, 7, 0.3); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(61, 109, 166, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    color: var(--true-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--true-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--true-blue), var(--ochre));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--true-blue);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
    transform: translateZ(0);
}

/* Ensure first slide is visible immediately */
.slide:first-child {
    opacity: 1;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 122, 7, 0.7) 0%, rgba(210, 122, 7, 0.4) 50%, rgba(61, 109, 166, 0.3) 100%);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Section Background Images */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

/* Update existing sections to work with background images */
.about {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.programs {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--true-blue), var(--kelly-green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--platinum-light);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--platinum-light), #fde6c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--platinum-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-artwork {
    position: relative;
    width: 400px;
    height: 400px;
}

.artwork-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.artwork-1 {
    background: linear-gradient(135deg, var(--true-blue), var(--kelly-green));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.artwork-2 {
    background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.artwork-3 {
    background: linear-gradient(135deg, var(--kelly-green), var(--true-blue));
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.artwork-4 {
    background: linear-gradient(135deg, var(--ochre-light), var(--ochre));
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.artwork-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre), var(--kelly-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
}

.center-icon {
    color: white;
    font-size: 2.5rem;
    animation: rotate 20s linear infinite reverse;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.section-header h2 {
    color: var(--cadet-gray-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, rgba(61, 109, 166, 0.05), rgba(210, 122, 7, 0.05));
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(61, 109, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.about-card:hover::before {
    transform: translateX(100%);
}

.about-card h3 {
    color: var(--true-blue);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
}

.feature i {
    color: var(--kelly-green);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.image-blob {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre), var(--kelly-green));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morphing 15s ease-in-out infinite;
    position: relative;
}

@keyframes morphing {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.blob-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.blob-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blob-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.blob-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.float-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(61, 109, 166, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.program-card:hover::before {
    transform: translateX(100%);
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--true-blue);
}

.card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.decoration-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    animation: rotate 20s linear infinite;
}

.program-1 .decoration-circle { background: linear-gradient(135deg, var(--true-blue), var(--ochre)); }
.program-2 .decoration-circle { background: linear-gradient(135deg, var(--ochre), var(--kelly-green)); }
.program-3 .decoration-circle { background: linear-gradient(135deg, var(--kelly-green), var(--true-blue)); }
.program-4 .decoration-circle { background: linear-gradient(135deg, var(--ochre-light), var(--ochre)); }

.program-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transition: var(--transition);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(10deg);
}

.program-1 .program-icon { background: linear-gradient(135deg, var(--true-blue), var(--ochre)); }
.program-2 .program-icon { background: linear-gradient(135deg, var(--ochre), var(--kelly-green)); }
.program-3 .program-icon { background: linear-gradient(135deg, var(--kelly-green), var(--true-blue)); }
.program-4 .program-icon { background: linear-gradient(135deg, var(--ochre-light), var(--ochre)); }

.program-card h3 {
    color: var(--cadet-gray-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    position: relative;
    overflow: hidden;
}

.gallery-item-1 .gallery-placeholder { background: linear-gradient(135deg, var(--true-blue), var(--ochre)); }
.gallery-item-2 .gallery-placeholder { background: linear-gradient(135deg, var(--ochre), var(--kelly-green)); }
.gallery-item-3 .gallery-placeholder { background: linear-gradient(135deg, var(--kelly-green), var(--true-blue)); }
.gallery-item-4 .gallery-placeholder { background: linear-gradient(135deg, var(--ochre-light), var(--ochre)); }
.gallery-item-5 .gallery-placeholder { background: linear-gradient(135deg, var(--kelly-green), var(--true-blue)); }
.gallery-item-6 .gallery-placeholder { background: linear-gradient(135deg, var(--true-blue), var(--ochre-light)); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--platinum-light) 0%, #fde6c7 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(61, 109, 166, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(61, 109, 166, 0.05);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--cadet-gray-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.3rem;
}

.contact-item a:hover {
    color: var(--true-blue);
}

.location-detail,
.email-detail,
.social-detail {
    font-size: 0.9rem;
    color: var(--true-blue);
    font-style: italic;
}

.form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(61, 109, 166, 0.1);
}

.form-container h3 {
    color: var(--true-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--true-blue);
    box-shadow: 0 0 0 5px rgba(61, 109, 166, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--cadet-gray-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--ochre);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--true-blue), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(61, 109, 166, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile Fixes */
    .hero {
        min-height: 100vh;
        padding-top: 80px; /* Add padding to avoid navbar overlap */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    /* Hero Visual Elements Mobile Fixes */
    .hero-visual {
        order: -1; /* Move visual elements above text on mobile */
        margin-bottom: 2rem;
    }

    .hero-artwork {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    /* Adjust decorative elements spacing */
    .artwork-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .artwork-1 {
        top: 15%;
        left: 5%;
    }

    .artwork-2 {
        top: 5%;
        right: 10%;
    }

    .artwork-3 {
        bottom: 25%;
        left: 2%;
    }

    .artwork-4 {
        bottom: 15%;
        right: 5%;
    }

    .artwork-center {
        width: 100px;
        height: 100px;
    }

    .center-icon {
        font-size: 2rem;
    }

    /* Slider Navigation Mobile */
    .slider-nav {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        width: 300px;
        height: 300px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* General */
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-container {
        padding-top: 1rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Smaller visual elements for very small screens */
    .hero-artwork {
        width: 240px;
        height: 240px;
    }

    .artwork-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .artwork-center {
        width: 80px;
        height: 80px;
    }

    .center-icon {
        font-size: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Additional slider animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Improve slider performance */
.slide {
    will-change: opacity;
    transform: translateZ(0);
}

/* Enhanced touch interactions */
@media (hover: none) and (pointer: coarse) {
    .slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 12px;
        min-height: 12px;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 