/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fbf7ef;
    --gold-primary: #c8a24a;
    --gold-dark: #8a6a1f;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --grey-soft: #f2f2f2;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder svg {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-logo-watermark img {
    width: 450px;
    height: 450px;
    object-fit: contain;
    opacity: 0.15;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.hero-location {
    color: var(--gold-primary);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tagline-separator {
    color: var(--gold-primary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-icon {
    margin-top: 30px;
    animation: float 3s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 162, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 60px;
}

.about-text .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pillar {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.pillar p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Journey Section */
.journey-section {
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Georgia, serif;
    box-shadow: 0 5px 15px rgba(200, 162, 74, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--gold-dark);
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Experience Section */
.experience-section {
    background: var(--bg-secondary);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.experience-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* International Section */
.international-section {
    background: white;
}

.international-info {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.international-note {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.schedule {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.schedule-day {
    display: flex;
    gap: 25px;
    background: var(--grey-soft);
    padding: 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.schedule-day:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.schedule-day.highlight {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
}

.schedule-day.highlight .schedule-date {
    background: white;
    color: var(--gold-primary);
}

.schedule-day.highlight h4,
.schedule-day.highlight p {
    color: white;
}

.schedule-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.schedule-details h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold-dark);
}

.schedule-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Preparation Section */
.preparation-section {
    background: var(--bg-secondary);
}

.preparation-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.prep-category h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
    text-align: center;
}

.prep-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.prep-table tr {
    border-bottom: 1px solid rgba(200, 162, 74, 0.2);
}

.prep-table tr:last-child {
    border-bottom: none;
}

.prep-table td {
    padding: 15px 20px;
    font-size: 1rem;
}

.prep-table td:first-child {
    font-weight: 600;
    color: var(--gold-dark);
    width: 40%;
}

.prep-table td:last-child {
    color: var(--text-secondary);
}

.prep-note {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
    text-align: center;
}

.prep-note p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Apply Section */
.apply-section {
    background: white;
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
}

.apply-info {
    background: var(--grey-soft);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.apply-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.apply-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.apply-requirements {
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.apply-requirements h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.apply-requirements ul {
    list-style: none;
    padding-left: 0;
}

.apply-requirements li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.apply-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.apply-cta {
    text-align: center;
}

.apply-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Sponsors Section */
.sponsors-section {
    background: var(--bg-secondary);
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.sponsor-benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.sponsor-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sponsor-benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.sponsor-benefit p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.sponsor-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.sponsor-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.sponsor-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--grey-soft);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    background: var(--bg-secondary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    padding: 10px 20px;
    background: var(--gold-primary);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary), #2a2a2a);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.3rem;
    font-family: Georgia, serif;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .timeline-item {
        gap: 20px;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
    }

    .apply-info {
        padding: 30px 25px;
    }

    .section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        flex-direction: column;
        gap: 5px;
    }

    .tagline-separator {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .experience-grid,
    .about-pillars,
    .sponsor-benefits {
        grid-template-columns: 1fr;
    }
}
/* Director Section */
.director-section {
    background: white;
}

.director-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.director-image {
    position: sticky;
    top: 100px;
}

.director-placeholder {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(200, 162, 74, 0.2);
    aspect-ratio: 3 / 4;
}

.director-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.director-info {
    padding: 20px 0;
}

.director-name {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.director-title {
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.director-bio {
    margin-bottom: 40px;
}

.director-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.director-credentials {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.credential-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.director-quote {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 35px;
    border-radius: 15px;
    position: relative;
}

.director-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.director-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Director Section */
@media (max-width: 768px) {
    .director-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .director-image {
        position: static;
    }

    .director-placeholder {
        max-width: 250px;
    }

    .director-name {
        font-size: 2rem;
        text-align: center;
    }

    .director-title {
        text-align: center;
    }

    .director-credentials {
        padding: 25px 20px;
    }
}