:root {
    --color-primary: #1a1a1a;
    --color-secondary: #4a4a4a;
    --color-accent: #d4af37;
    --color-accent-bright: #ffd700;
    --color-red: #e63946;
    --color-blue: #1e88e5;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Crimson Pro', Georgia, serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-accent), var(--color-red), var(--color-blue)) 1;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-accent), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-red));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

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

/* Hero Section */
.hero {
    padding: 6rem var(--spacing-md) var(--spacing-xl);
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(230, 57, 70, 0.05) 50%, rgba(30, 136, 229, 0.1) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.01) 10px, rgba(0,0,0,0.01) 20px);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Hero Image Cards */
.hero-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-image-card {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.hero-img-1 {
    width: 280px;
    height: 200px;
    top: 15%;
    right: 8%;
    background-image: url('1.jpg');
    animation: floatCard1 25s ease-in-out infinite;
    transform: rotate(5deg);
}

.hero-img-2 {
    width: 220px;
    height: 160px;
    bottom: 20%;
    right: 5%;
    background-image: url('2.jpg');
    animation: floatCard2 20s ease-in-out infinite;
    transform: rotate(-8deg);
}

.hero-img-3 {
    width: 240px;
    height: 180px;
    top: 35%;
    left: 5%;
    background-image: url('3.jpg');
    animation: floatCard3 22s ease-in-out infinite;
    transform: rotate(-5deg);
}

.hero-img-4 {
    width: 200px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    background-image: url('4.jpg');
    animation: floatCard4 28s ease-in-out infinite;
    transform: rotate(7deg);
}

@keyframes floatCard1 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(8deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50% { transform: translate(15px, -15px) rotate(-5deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    50% { transform: translate(20px, -10px) rotate(-8deg); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translate(0, 0) rotate(7deg); }
    50% { transform: translate(-15px, 15px) rotate(4deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5); }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--color-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-red) 100%);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Philosophy Section */
.philosophy {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-red));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    padding: 2.5rem;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-accent), var(--color-red), var(--color-blue)) border-box;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(230, 57, 70, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    color: var(--color-primary);
}

.philosophy-card p {
    color: var(--color-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Curators Section */
.curators {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-white);
}

.curators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.curator-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem;
    background: white;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-accent), var(--color-red), var(--color-blue)) border-box;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.curator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.curator-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background-color: rgba(212, 175, 55, 0.1);
    background-size: cover;
    background-position: center top;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-accent);
}

.joshua-photo {
    background-image: url('joshuas.png');
    background-color: white;
}

.chelsea-photo {
    background-image: url('chelsea bio.png');
}

.curator-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.curator-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.curator-bio {
    font-size: 1.05rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.curator-bio:last-child {
    margin-bottom: 0;
}

/* Cities Section */
.cities {
    padding: var(--spacing-xl) var(--spacing-md);
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, rgba(255,255,255,1) 100%);
}

.city-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
}

.city-block.reverse {
    direction: rtl;
}

.city-block.reverse > * {
    direction: ltr;
}

.city-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-accent), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.city-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.city-content h3 {
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.city-content p {
    font-size: 1.08rem;
    color: var(--color-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.city-highlights {
    list-style: none;
    padding: 0;
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.city-highlights li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.city-highlights li:hover {
    padding-left: 2.5rem;
    color: var(--color-accent);
}

.city-highlights li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.city-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.city-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(230, 57, 70, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.city-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.city-image:hover::after {
    opacity: 1;
}

.city-image.beijing {
    background-image: url('beijing.jpg');
}

.city-image.shenzhen {
    background-image: url('shenzen.jpg');
}

/* Accommodations Section */
.accommodations {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.accommodations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.accommodations-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.accommodations-text p {
    font-size: 1.08rem;
    color: var(--color-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.accommodations-highlights {
    list-style: none;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin-top: 2rem;
}

.accommodations-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-primary);
    font-weight: 500;
}

.accommodations-highlights li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.accommodations-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(230, 57, 70, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-image:hover::after {
    opacity: 1;
}

.gallery-image:nth-child(1) {
    grid-column: 1 / -1;
    height: 250px;
}

/* Experience Section */
.experience {
    padding: var(--spacing-xl) var(--spacing-md);
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
        var(--color-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.experience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-card:hover .experience-icon {
    animation: spin 0.6s ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.experience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.experience-card p {
    color: var(--color-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Who Should Apply */
.who-should-apply {
    padding: var(--spacing-xl) var(--spacing-md);
    background:
        linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.who-should-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.who-should-apply h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.audience-card {
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.audience-card:hover::before {
    left: 100%;
}

.audience-card:hover {
    border-color: var(--color-accent);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-accent-bright);
}

.audience-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* Application Section */
.application {
    padding: var(--spacing-xl) var(--spacing-md);
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(230, 57, 70, 0.03) 100%);
}

.application-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.application-text h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-text p {
    font-size: 1.15rem;
    color: var(--color-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.application-details {
    background: white;
    padding: 2.5rem;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-accent), var(--color-red)) border-box;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.detail-item {
    padding: 1.25rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    line-height: 1.7;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.05rem;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.includes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-secondary);
    line-height: 1.6;
}

.includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Styles */
.application-form {
    background: white;
    padding: 3rem;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-accent), var(--color-red)) border-box;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.application-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

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

.submit-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-red) 100%);
    color: var(--color-white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.submit-button:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
    text-align: center;
}

.form-success {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
    border: 2px solid var(--color-accent);
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-red), var(--color-blue), var(--color-accent));
    background-size: 200% 100%;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-accent-bright);
}

.footer-credits {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-accent-bright);
    border-bottom-color: var(--color-accent-bright);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-image-card {
        width: 180px !important;
        height: 130px !important;
    }

    .hero-img-1 {
        top: 10%;
        right: 5%;
    }

    .hero-img-2 {
        bottom: 15%;
        right: 3%;
    }

    .hero-img-3 {
        top: 40%;
        left: 3%;
    }

    .hero-img-4 {
        bottom: 10%;
        left: 5%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .city-content h2 {
        font-size: 2.8rem;
    }

    .city-block,
    .city-block.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .city-image {
        height: 400px;
    }

    .application-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .accommodations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .accommodations-gallery {
        order: -1;
    }

    .curator-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .curator-photo {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-links {
        display: none;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 7rem var(--spacing-md) var(--spacing-lg);
        min-height: 85vh;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    /* Hide or minimize image cards on mobile */
    .hero-img-3,
    .hero-img-4 {
        display: none;
    }

    .hero-img-1 {
        width: 140px !important;
        height: 100px !important;
        top: 8%;
        right: 5%;
        opacity: 0.7;
    }

    .hero-img-2 {
        width: 120px !important;
        height: 90px !important;
        bottom: 8%;
        right: 5%;
        opacity: 0.7;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .application-text h2,
    .who-should-apply h2 {
        font-size: 2.2rem;
    }

    .city-content h2 {
        font-size: 2.5rem;
    }

    .city-image {
        height: 300px;
        border-radius: 12px;
    }

    .philosophy-grid,
    .experience-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-card,
    .experience-card,
    .audience-card {
        padding: 2rem;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }

    .experience-icon {
        font-size: 3rem;
    }
}