:root {
    --primary-dark: #0a1854;
    --primary-light: #2563eb;
    --accent-blue: #3b82f6;
    --accent-gold: #d4af37;
    --gold-light: #f7d794;
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --hero-bg: #007efc;
    --card-bg: rgba(255, 255, 255, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}
@font-face {
    font-family: crimsonpro;
    src: url(CrimsonPro-VariableFont_wght.ttf);
}
@font-face {
    font-family: garamond;
    src: url(EBGaramond-VariableFont_wght.ttf);
}
@font-face {
    font-family: crimsonitalic;
    src: url(CrimsonPro-Italic-VariableFont_wght.ttf);
}
@font-face {
    font-family: garamonditalic;
    src: url(EBGaramond-Italic-VariableFont_wght.ttf);
}
@font-face {
    font-family: sansprima;
    src: url(Prima-Sans-Regular.otf);
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}
.nav-logo .logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}
.nav-logo .logo:hover {
    transform: scale(1.05);
}
.nav-title .neon-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.nav-title {
    color: var(--hero-bg);
    position: absolute;
    left: 15.2%;
    transform: translateX(-50%);
}
.nav-links {
    display: flex;
    gap: 0.02rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.05);
}
.nav-links a:hover::before {
    width: 80%;
}
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    margin-top: 0;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    max-width: 1000px;
    position: relative;
}
.hero-logo {
    width: min(400px, 40vw);
    height: auto;
    margin-top: 3.2rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.hero h1 .oasis {
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 .mun {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.gradient {
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    color: var(--text-light);
    font-size: 2rem;
}

.date {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

/* From Uiverse.io by andrew-demchenk0 */
.glitch {
    position: relative;
    font-size: 25px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-gold);
    letter-spacing: 5px;
    z-index: 1;
    animation: shift 1s ease-in-out infinite alternate;
}

.glitch:before,
.glitch:after {
    display: block;
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.glitch:before {
    animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--accent-gold);
    z-index: -1;
}

.glitch:after {
    animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: var(--accent-gold);
    z-index: -2;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 3px);
    }

    40% {
        transform: translate(-3px, -3px);
    }

    60% {
        transform: translate(3px, 3px);
    }

    80% {
        transform: translate(3px, -3px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes shift {
    0%, 40%, 44%, 58%, 61%, 65%, 69%, 73%, 100% {
        transform: skewX(0deg);
    }

    41% {
        transform: skewX(10deg);
    }

    42% {
        transform: skewX(-10deg);
    }

    59% {
        transform: skewX(40deg) skewY(10deg);
    }

    60% {
        transform: skewX(-40deg) skewY(-10deg);
    }

    63% {
        transform: skewX(10deg) skewY(-5deg);
    }

    70% {
        transform: skewX(-50deg) skewY(-20deg);
    }

    71% {
        transform: skewX(10deg) skewY(-10deg);
    }
}
.registration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 3rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.registration-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    max-width: 250px;
}
.section-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-light);
    width: 200px;
    min-height: 50px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    letter-spacing: -0.01em;
    overflow: hidden;
}
.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;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(212, 175, 55, 0.4);
}
.button:hover::before {
    left: 100%;
}
.button:active {
    transform: translateY(0);
}
.gradient1 {
    font-size: 5rem;
}
.vertical-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}
.events {
    padding: 8rem 2rem;
    background: var(--text-light);
    position: relative;
}
.events h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 2px;
}

.events h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.parent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.card {
    cursor: pointer;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.card:hover::before {
    transform: scaleX(1);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}
.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}
.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #e6ecff 0%, #c3d9ff 50%, #a3c4ff 100%);
    position: relative;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.parent-card {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.card2 {
    max-width: 900px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
}
.card-content2 {
    position: relative;
    z-index: 1;
}
.card-content2 p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}
.readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.readmore:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}
.readmore::after {
    content: '→';
    transition: transform 0.3s ease;
}
.readmore:hover::after {
    transform: translateX(4px);
}
.tag-bottom {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 4rem 2rem 2rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: -0.01em;
}
.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.social-links a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}
/* Contact Grid Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 15px;
}

.contact-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(207, 181, 59, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-name {
    font-weight: 500;
    color: #CFB53B;
    text-align: left;
}

.contact-email {
    color: #ffffff;
    text-align: left;
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--hero-bg);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--hero-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0.35rem 0;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.mobile-menu a:hover {
    color: var(--accent-gold);
    background: rgba(207, 181, 59, 0.1);
    transform: translateY(-2px);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-title .neon-text {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .about {
        padding: 2rem 1rem;
        margin-top: 80px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .parent-card {
        padding: 1.5rem;
    }

    .tag-bottom {
        font-size: 1.2rem;
    }
    .contact-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: left;
    }

    .contact-name {
        text-align: left;
        margin-bottom: 5px;
    }

    .contact-email {
        text-align: left;
        font-size: 0.9em;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos].aos-animate {
    opacity: 1;
}
@media (max-width: 1024px) {
    .nav-title {
        position: static;
        transform: none;
        margin: 0 1rem;
    }
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 1rem;
        min-height: 90vh;
    }

    .hero-content {
        margin-top: 2rem;
    }

    .registration-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0.5rem 0.5rem;
        min-width: 350px;
    }

    .vertical-line {
        width: 60px;
        height: 1px;
    }

    .events {
        padding: 4rem 1rem;
    }

    .parent {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .about {
        padding: 4rem 1rem;
    }

    .card2 {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3rem 1rem 2rem;
    }

    .hero-logo {
        margin-top: 10.2rem;
    }
}

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

        .events h2 {
            font-size: 2rem;
        }

        .about-content h2 {
            font-size: 2rem;
        }

        .registration-container {
            padding: 1.5rem 1rem;
        }

        .button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }
    }
