@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Carter+One&family=Prata&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.splash {
    background-image: url("images/programs.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.splash-image-left,
.splash-image-right {
    position: absolute;
    bottom: 420px;
    width: 30%;
    max-width: 300px;
    z-index: 1;
    opacity: 0.3;
}

.splash-image-left {
    left: 20px;
}

.splash-image-right {
    right: 20px;
}

.splash-image-left img,
.splash-image-right img {
    width: 100%;
    height: auto;
}

.header-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    width: 100px;
}

.header-logo a {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo img {
    height: 50px;
    transform: scale(2);
}

.header-logo .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 15px;
    text-align: center;
    white-space: nowrap;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 10;
}

.navbar ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.navbar ul li {
    padding: 0 15px;
}

.navbar ul li a {
    font-family: "Bona Nova SC", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #978c4d;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    padding: 12px;
    border-radius: 8px;
    background: rgba(151, 140, 77, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: #978c4d;
    transform: scale(1.05);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(151, 140, 77, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.mobile-menu-logo .logo-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #978c4d;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-logo .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu-nav a {
    font-family: "Bona Nova SC", sans-serif;
    color: white;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu-nav a:nth-child(1) { animation-delay: 0.3s; }
.mobile-menu-nav a:nth-child(2) { animation-delay: 0.4s; }
.mobile-menu-nav a:nth-child(3) { animation-delay: 0.5s; }
.mobile-menu-nav a:nth-child(4) { animation-delay: 0.6s; }

.mobile-menu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-menu-nav a:hover::before,
.mobile-menu-nav a.active::before {
    left: 0;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: rgba(255, 255, 255, 0.9);
    color: #978c4d;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-content {
    text-align: center;
    z-index: 10;
    margin-top: 120px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.splash-content h1 {
    font-family: "Prata", serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.white-section {
    background-color: white;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.section-heading {
    font-family: "Prata", serif;
    color: #978c4d;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 50px 0 30px 0;
    text-align: left;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    letter-spacing: -0.5px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-heading:first-of-type {
    margin-top: 0;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -8px;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #978c4d, #b8a760);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-heading:hover::before {
    width: 150px;
}

.watermark-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.05;
    pointer-events: none;
}

.watermark {
    margin: 20px 0;
}

.watermark img {
    width: 80%;
    max-width: 800px;
    height: auto;
    opacity: 0.1;
}

.text-sections {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    width: 100%;
}

.text-section {
    margin: 30px 0;
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.text-section p {
    margin: 0 0 25px 0;
    text-indent: 0;
    text-align: left;
    font-weight: 400;
    color: #444;
}

.text-section p:last-child {
    margin-bottom: 0;
}

.text-section p strong {
    color: #978c4d;
    font-weight: 600;
}

.text-section br {
    display: none;
}

.footer {
    background-color: #978c4d;
    color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-navbar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-navbar ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-navbar li {
    padding: 0 10px;
}

.footer-navbar a {
    color: #fff;
    text-decoration: none;
    font-family: "Bona Nova SC", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-navbar a:hover {
    opacity: 0.8;
}

.footer-navbar .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.footer-navbar .logo img {
    height: 50px;
    margin-bottom: 5px;
}

.footer-navbar .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

body.no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .navbar {
        display: none;
    }

    .splash {
        height: 50vh;
    }

    .splash-content {
        margin-top: 80px;
        padding: 0 20px;
    }

    .splash-content h1 {
        font-size: 2.5rem;
    }

    .splash-image-left,
    .splash-image-right {
        bottom: 10px;
        width: 25%;
        max-width: 200px;
    }

    .section-heading {
        font-size: 1.8rem;
        margin: 40px 0 20px 0;
        padding: 0 15px;
    }

    .section-heading::before {
        left: 15px;
        width: 80px;
    }

    .section-heading:hover::before {
        width: 110px;
    }

    .white-section {
        padding: 50px 15px;
    }

    .text-sections {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .text-section {
        font-size: 1rem;
        margin: 25px 0;
    }

    .text-section p {
        text-indent: 1.2em;
        font-size: 16px;
        line-height: 1.7;
    }

    .footer-navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    .footer-navbar .logo {
        order: -1;
        margin-bottom: 20px;
    }

    .mobile-menu-nav a {
        font-size: 1.2rem;
        min-width: 250px;
        padding: 12px 30px;
    }
}

@media screen and (max-width: 480px) {
    .splash-content h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
        margin: 35px 0 15px 0;
        padding: 0 10px;
    }

    .section-heading::before {
        left: 10px;
        width: 60px;
    }

    .section-heading:hover::before {
        width: 85px;
    }

    .text-sections {
        padding: 0 10px;
    }

    .text-section {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 20px 0;
    }

    .text-section p {
        text-indent: 1em;
        font-size: 15px;
    }

    .mobile-menu-logo .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .mobile-menu-logo .logo-text {
        font-size: 1.2rem;
    }

    .mobile-menu-nav a {
        font-size: 1.1rem;
        min-width: 220px;
        padding: 10px 25px;
    }
}