@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: 'Sour Gummy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

#astronaut-image {
    position: absolute;
    right: 18vw;
    top: 0vw;
    width: 20vw;
    z-index: 100; /* Above the background image */;
    will-change: left, right, top, transform; /* Optimize for animations */
    transform-origin: center center; /* Rotate around center */
    transition: transform 0.1s ease-out; /* Smooth rotation */
}

@media (max-width: 900px) {
    /* Keep scroll path visible on medium screens */
    #astronaut-image {
        width: 22vw;
    }
}

@media (max-width: 830px) {
    /* Slightly larger on narrower viewports to balance path coverage */
    #astronaut-image {
        width: 26vw;
    }
}

@media (max-width: 780px) {
    /* Prevent overflow while keeping movement readable */
    #astronaut-image {
        width: 30vw;
    }
}

html {
    background-color: #4b87f7;
    background-image: 
        url('images/Background-no-gradient.png'),
        linear-gradient(
            180deg,
            #000016 0px,
            #000016 200vw,
            #000048 300vw,
            #1c37c3 360vw,
            #4b87f7 540vw,
            #4b87f7 3000vw
        );
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% 3000vw;
    background-position: top center, top left;
    position: relative;

    overflow-x: hidden;
    min-height: 1000vh; /* Ensure footer is visible - footer ends around 690vw */
}

#logo {
    position: absolute;
    top: 0;
    left: 15vw;
    width: 70vw;
}

#call-to-action-section {
    position: absolute;
    top: 35vw;
    left: 20vw;
    z-index: 1; /* Above the background image */
    width: 60vw;
    background: #c7d6fc;
    border-radius: 50px;
    max-height: 15vw;
    overflow: hidden;
  
    /* outer border */
    border: 8px solid #d7e2ff;
  
    /* inner border */
    box-shadow: inset 0 0 0 8px #011a5e;
  
    padding: 40px;              /* so content doesn't touch the borders */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#call-to-action-section h1 {
    text-align: center;
    margin: 0 0 0 0;
    font-size: 4vw;
    font-weight: 400;
    color: #011a5e;
}

.call-to-action-button {
    background: linear-gradient(135deg, #011a5e 0%, #023a8e 100%);
    color: white;
    border-radius: 50px;
    padding: 4.5vh 4vw;
    text-align: center;
    cursor: pointer;
    font-size: 3vw;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(1, 26, 94, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-top: 1vh;
    line-height: 1;
}

.call-to-action-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.5) 55%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 75%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.call-to-action-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        -45deg,
        transparent 20%,
        rgba(173, 216, 255, 0.2) 35%,
        rgba(173, 216, 255, 0.4) 50%,
        rgba(173, 216, 255, 0.2) 65%,
        transparent 80%
    );
    transform: rotate(-45deg);
    animation: shineReverse 4s ease-in-out infinite;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

#ce-este-starship-section {
    position: absolute;
    top: 54vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Behind other content */
}

#ce-este-starship-section h1 {
    text-align: center;
    margin: 0 0 .3em 0;
    font-size: 8vw;
    font-weight: 600;
    color: #9eb7fb;
}

.call-to-action-button:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 24px rgba(1, 26, 94, 0.4),
                0 8px 16px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(1, 26, 94, 0.3);
    background: linear-gradient(135deg, #023a8e 0%, #0350b8 100%);
}

.call-to-action-button:hover::before {
    animation: shine 1.5s ease-in-out infinite;
}

.call-to-action-button:hover::after {
    animation: shineReverse 2s ease-in-out infinite;
}

.call-to-action-button:active,
.call-to-action-button.pressed {
    transform: scale(0.95) translateY(0);
    box-shadow: 0 4px 8px rgba(1, 26, 94, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.2);
}

#moon-image {
    position: absolute;
    top: 12vw;
    right: 0;
    width: 30%;
    z-index: 1; /* Above the background image */;
}

@media (max-width: 1024px) {
    #moon-image {
        right: 0;
        width: 25%;
    }
}

@media (max-width: 768px) {
    #moon-image {
        right: 0;
        width: 20%;
    }
}
#text-bubble {
    position: absolute;
    top: 10vw;
    left: 20%;
    width: 55%;
    z-index: 1; /* Above the background image */;
}

#text-bubble-text {
    position: absolute;
    top: 11vw;
    left: 28%;
    width: 40%;
    z-index: 1; /* Above the background image */;
    font-size: 3vw;
    font-weight: 400;
    color: #011a5e;
}


#text-bubble-text p {
    margin: 0;
    padding: 0;
}

#satellite-image {
    position: absolute;
    top: 100vw;
    right: 2%;
    width: 15vw;
    z-index: 1; /* Above the background image */;
}

@media (max-width: 1024px) {
    #satellite-image {
        width: 12vw;
    }
}


#planet-section {
    position: absolute;
    top: 94vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Above the background image */;
}

#planet-section h1 {
    text-align: center;
    margin: 0 0 .3em 0;
    font-size: 6.5vw;
    font-weight: 600;
    color: #9eb7fb;
}

#mars {
    position: absolute;
    top: 0;
    left: 0;
    width: 65vw;
}

#venus {
    position: absolute;
    top: 40vw;
    right: 0;
    width: 60vw;
}

#neptune {
    position: absolute;
    top: 75vw;
    left: -5vw;
    width: 65vw;
}

#map {
    position: absolute;
    top: 250vw;
    left: 5vw;
    width: 90vw;
    z-index: 1; /* Above the background image */;
}

#map-title{
    position: absolute;
    top: 26vw;
    left: 10%;
    width: 80%;
    font-size: 8vw;
    text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1; /* Above the background image */;
}

#map-image {
    width: 100%;
}

#time {
    position: absolute;
    top: 315vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Above the background image */;
}

#time-title {
    position: absolute;
    top: 12vw;
    left: 25vw;
    width: 50vw;
    z-index: 1; /* Above the background image */;
}



#clock1 {
    position: absolute;
    top: 10vw;
    right: 0;
    width: 20vw;
    z-index: 1; /* Above the background image */;
}

#clock2 {
    position: absolute;
    top: 10vw;
    left: 0;
    width: 20vw;
    z-index: 1; /* Above the background image */;
}

#program-button {
    position: absolute;
    top: 25vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

#program-button > div {
    background: linear-gradient(135deg, #e7e0c3 0%, #f0ead6 100%);
    border-radius: 50px;
    
    /* outer border */
    border: 8px solid #f5f0e0;
    
    /* inner border */
    box-shadow: inset 0 0 0 8px #c8a500,
                0 8px 16px rgba(200, 165, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
    
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#program-button > div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
    opacity: 1;
}

#program-button:hover > div {
    transform: scale(1.08) translateY(-2px);
    box-shadow: inset 0 0 0 8px #c8a500,
                0 12px 24px rgba(200, 165, 0, 0.4),
                0 8px 16px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(200, 165, 0, 0.3);
    border-color: #faf8f0;
}

#program-button:hover > div::before {
    animation: shine 1.5s ease-in-out infinite;
}

#program-button:active > div,
#program-button.pressed > div {
    transform: scale(0.95) translateY(0);
    box-shadow: inset 0 0 0 8px #c8a500,
                0 4px 8px rgba(200, 165, 0, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes shineReverse {
    0% {
        transform: translateX(100%) translateY(100%) rotate(-45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(-45deg);
    }
}

#program-button > div p {
    margin: 0;
    font-size: 5vw;
    font-weight: 500;
    color: #000000;
    font-family: 'Sour Gummy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#program-button:hover > div p {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}



#intrebari-generale-section {
    position: absolute;
    top: 170vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Above the background image */;
}


#intrebari-generale-cloud {
    position: absolute;
    top: 200vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Above the background image */;
}

#small-clouds-container {
    position: absolute;
    top: 242vw;
    left: 0;
    width: 50%;
    z-index: 1; /* Above the background image */;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40vw;
}

.small-cloud-container {
    position: relative;
    width: 100%;
    
    z-index: 1; /* Above the background image */;
}

.small-cloud-title {
    position: absolute;
    top: 7vw;
    left: 4.4vw;
    font-size: 3.1vw;
    font-weight: 600;
    color: #011a5e;
    z-index: 1;
    text-align: center;
    width: 80%;
}

.small-cloud-text {
    position: absolute;
    width: 80%;
    top: 16vw;
    left: 5vw;
    font-size: 3vw;
    font-weight: 400;
    color: #011a5e;
    z-index: 1;
    text-align: center;
}

.small-cloud{
    position: absolute;
    width: 100%;
}

#ce-trebuie-sa-aduc-cloud .small-cloud-text {
    top: 12vw;
}

#are-rost-sa-vin-daca-nu-stiu-programare-cloud .small-cloud-text {
    font-size: 2.2vw;
    top: 15vw;
}

#are-rost-sa-vin-daca-nu-stiu-programare-cloud .small-cloud-title {
    font-size: 2.5vw;
    top: 8vw;
}

#mai-am-si-alte-intrebari-cloud .small-cloud-text {
    top: 11vw;
}

#small-clouds-container-right {
    position: absolute;
    top: 265vw;
    right: 0;
    width: 50%;
    z-index: 1; /* Above the background image */;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40vw;
}

#cat-costa-cloud .small-cloud-text {
    top: 10vw;
}

#cat-costa-cloud .small-cloud-title {
    top: 10vh;
}

#ce-evenimente-ati-mai-organizat-cloud .small-cloud-text {
    font-size: 2.2vw;
    top: 16vw;
}

#ce-evenimente-ati-mai-organizat-cloud .small-cloud-title {
    font-size: 3vw;
    top: 11vh;
}

#ce-pot-crea-la-starship-cloud .small-cloud-text {
    top: 15vw;
}

#ce-pot-crea-la-starship-cloud .small-cloud-title {
    top: 10vw;
}

#sponsor-section {
    position: absolute;
    top: 570vw;
    left: 0;
    width: 100%;
    z-index: 1; /* Above the background image */;
}

#sponsor-section h1 {
    text-align: center;
    margin: 0 0 .3em 0;
    font-size: 6.5vw;
    font-weight: 600;
    color: #ffffff;
}

#sponsor-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsor-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12vw;
}

.sponsor-balloon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sponsor-balloon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    #logo{
        width: 80vw;
        left: 10vw;
    }

    #call-to-action-section {
        width: 80vw;
        top: 39vw;
        left: 10vw;
        max-height: 18vw;
    }

    #ce-este-starship-section {
        top: 58vw;
    }
    #text-bubble-text {
        top: 13vw;
    }
    #text-bubble{
        top: 12vw;
    }
}

@media (max-width: 830px) {
    #logo{
        width: 90vw;
        left: 5vw;
    }

    #call-to-action-section {
        width: 80vw;
        top: 43vw;
    }

    #ce-este-starship-section {
        top: 62vw;
    }
}

@media (max-width: 780px) {
    #logo{
        width: 100vw;
        left: 0;
    }

    #call-to-action-section {
        width: 90vw;
        top: 49vw;
        left: 5vw;
        max-height: 18vw;
    }

    #ce-este-starship-section {
        top: 66vw;
    }

    #text-bubble-text {
        top: 15vw;
        font-size: 3.4vw;
        width: 48vw;
    }

    #text-bubble{
        top: 14vw;
        width: 60vw;
    }
    #satellite-image {
        top: 105vw;
        width: 12vw;
    }
    #planet-section {
        top: 110vw;
    }
}

@media (max-width: 700px) {
    #displacement-container {
        position: absolute;
        top: 40vw;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    #displacement-container2 {
        position: absolute;
        top: 40vw;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    html {
        background-color: #4897ff;
        background-image: 
            url('images/Background-mobile-no-gradient.png'),
            linear-gradient(
                180deg,
                #000016 0px,
                #000016 380vw,
                #000048 400vw,
                #1c37c3 440vw,
                #4897ff 540vw,
                #4897ff 1200vw
            );
        background-repeat: no-repeat, no-repeat;
        background-size: 100% auto, 100% 2000vw;
        background-position: top center, top left;
        min-height: 1400vh; /* Ensure footer is visible on mobile - footer ends around 830vw */
    }

    #logo {
        top: 10vw;
    }

    #call-to-action-section {
        top: 60vw;
        left: 10vw;
        width: 80vw;
        max-height: 24vw;
    }

    #call-to-action-section h1 {
        font-size: 5.5vw;
    }

    .call-to-action-button {
        font-size: 5vw;
        padding: 4.5vh 3vw;
    }

    #ce-este-starship-section {
        top: 105vw;
    }

    #moon-image {
        top: 3vw;
        width: 20vw;
    }

    #text-bubble-text {
        top: 18vw;
        font-size: 4vw;
        left: 22vw;
        width: 60vw;
    }

    #text-bubble{
        top: 16vw;
        left: 12vw;
        width: 75vw;
    }

    #planet-section {
        top: 160vw;
    }

    #satellite-image {
        top: 145vw;
        width: 14vw;
    }


    #intrebari-generale-cloud {
        top: 300vw;
    }

    #small-clouds-container {
        top: 340vw;
        width: 80vw;
        gap: 100vw
    }

    #small-clouds-container-right {
        top: 390vw;
        width: 80vw;
        gap: 100vw;
    }

    .small-cloud-title {
        font-size: 5vw;
        left: 8vw;
        top: 12vw;
    }

    .small-cloud-text {
        font-size: 4.5vw;
        top: 26vw;
        left: 7vw;
    }

    #cat-costa-cloud .small-cloud-title {
        top: 10vw;
    }

    #cat-costa-cloud .small-cloud-text {
        top: 18vw;
    }

    #ce-trebuie-sa-aduc-cloud .small-cloud-title {
        top: 10vw;
    }

    #ce-trebuie-sa-aduc-cloud .small-cloud-text {
        top: 18vw;
    }

    #ce-evenimente-ati-mai-organizat-cloud .small-cloud-title {
        top: 10vw;
        font-size: 4.5vw;
    }

    #ce-evenimente-ati-mai-organizat-cloud .small-cloud-text {
        top: 24vw;
        font-size: 3vw;
    }

    #are-rost-sa-vin-daca-nu-stiu-programare-cloud .small-cloud-title {
        top: 12vw;
        left: 7vw;
        font-size: 4vw;
    }

    #are-rost-sa-vin-daca-nu-stiu-programare-cloud .small-cloud-text {
        top: 24vw;
        font-size: 3.2vw;
    }

    #ce-pot-crea-la-starship-cloud .small-cloud-title {
        top: 16vw;
    }

    #ce-pot-crea-la-starship-cloud .small-cloud-text {
        top: 26vw;
    }
    
    #mai-am-si-alte-intrebari-cloud .small-cloud-title {
        top: 13vw;
        font-size: 5vw;
    }

    #mai-am-si-alte-intrebari-cloud .small-cloud-text {
        top: 22vw;
        font-size: 4vw;
    }

    #displacement-container3 {
        position: absolute;
        top: 15vw;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    #call-to-action-section {
        width: 90vw;
        left: 5vw;

         /* outer border */
    border: 4px solid #d7e2ff;
        
    /* inner border */
    box-shadow: inset 0 0 0 4px #011a5e;

    max-height: 35vw;  
    }

    #program-button > div {
        background: linear-gradient(135deg, #e7e0c3 0%, #f0ead6 100%);
        /* outer border */
        border: 4px solid #f5f0e0;
        
        /* inner border */
        box-shadow: inset 0 0 0 4px #c8a500,
                    0 6px 12px rgba(200, 165, 0, 0.3),
                    0 3px 6px rgba(0, 0, 0, 0.2);
        
        padding: 30px;
    }

    #program-button:hover > div {
        transform: scale(1.06) translateY(-2px);
        box-shadow: inset 0 0 0 4px #c8a500,
                    0 10px 20px rgba(200, 165, 0, 0.4),
                    0 6px 12px rgba(0, 0, 0, 0.3),
                    0 0 15px rgba(200, 165, 0, 0.3);
        border-color: #faf8f0;
    }

    #program-button:active > div,
    #program-button.pressed > div {
        transform: scale(0.95) translateY(0);
        box-shadow: inset 0 0 0 4px #c8a500,
                    0 3px 6px rgba(200, 165, 0, 0.2),
                    0 2px 4px rgba(0, 0, 0, 0.2);
    }

    #program-button > div p {
        font-size: 5vw;
        color: #000000;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #program-button:hover > div p {
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }   

    #call-to-action-section h1 {
        font-size: 6.5vw;
    }

    .call-to-action-button {
        font-size: 6vw;
        padding: 5vw 5vw;
    }

    #text-bubble-text {
        top: 18vw;
        left: 16vw;
        font-size: 5vw;
        width: 70vw;
    }


    #sponsor-section {
        top:700vw;
    }

    #sponsor-grid {
        flex-direction: column;
        margin-top: 10vw;
    }

    .sponsor-row {
        flex-direction: column;
        align-items: center;
        gap: 10vw;
    }

    .sponsor-balloon {
        width: 60%;
        height: 60%;
        object-fit: contain;
    }

    .sponsor-balloon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Schedule Modal Styles */
.schedule-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.schedule-modal-content {
    background: linear-gradient(135deg, #c7d6fc 0%, #d7e2ff 100%);
    border-radius: 50px;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 8px #d7e2ff,
                inset 0 0 0 8px #011a5e;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.schedule-modal-inner {
    padding: 50px;
    padding-right: 40px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #011a5e #d7e2ff;
}

/* Webkit scrollbar styling (Chrome, Safari, Edge) */
.schedule-modal-inner::-webkit-scrollbar {
    width: 12px;
}

.schedule-modal-inner::-webkit-scrollbar-track {
    background: transparent;
    margin: 15px 0;
}

.schedule-modal-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #011a5e 0%, #1c37c3 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s ease;
    margin: 15px 0;
}

.schedule-modal-inner::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1c37c3 0%, #011a5e 100%);
}

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

.schedule-close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #011a5e;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.schedule-close-button:hover {
    background-color: rgba(1, 26, 94, 0.1);
    transform: scale(1.1) rotate(90deg);
}

.schedule-title {
    text-align: center;
    font-size: 4vw;
    font-weight: 600;
    color: #011a5e;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.schedule-day {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(1, 26, 94, 0.2),
                inset 0 0 0 4px #011a5e;
}

.day-title {
    font-size: 3vw;
    font-weight: 600;
    color: #011a5e;
    margin: 0 0 25px 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 5px solid #011a5e;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(1, 26, 94, 0.2);
}

.schedule-time {
    font-size: 1.8vw;
    font-weight: 600;
    color: #011a5e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.schedule-event {
    font-size: 1.6vw;
    font-weight: 400;
    color: #011a5e;
    line-height: 1.4;
}

/* Mobile Responsive Styles for Modal */
@media (max-width: 700px) {
    .schedule-modal-content {
        padding: 0;
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                    0 0 0 4px #d7e2ff,
                    inset 0 0 0 4px #011a5e;
    }

    .schedule-modal-inner {
        padding: 30px 20px;
        padding-right: 15px;
        max-height: 95vh;
        scrollbar-width: thin;
        scrollbar-color: #011a5e #d7e2ff;
    }

    .schedule-modal-inner::-webkit-scrollbar {
        width: 8px;
    }

    .schedule-modal-inner::-webkit-scrollbar-track {
        background: transparent;
        margin: 10px 0;
    }

    .schedule-modal-inner::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #4b87f7 0%, #1c37c3 100%);
        border-radius: 8px;
        border: 1px solid transparent;
        background-clip: padding-box;
        margin: 10px 0;
    }

    .schedule-close-button {
        top: 15px;
        right: 20px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }

    .schedule-title {
        font-size: 6vw;
        margin: 0 0 30px 0;
    }

    .schedule-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-day {
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(1, 26, 94, 0.2),
                    inset 0 0 0 3px #011a5e;
    }

    .day-title {
        font-size: 5vw;
        margin: 0 0 20px 0;
    }

    .schedule-item {
        padding: 12px;
        border-radius: 12px;
        border-left-width: 4px;
    }

    .schedule-time {
        font-size: 4vw;
    }

    .schedule-event {
        font-size: 3.5vw;
    }
}

/* Footer Styles */
#main-footer {
    position: absolute;
    top: 700vw;
    left: 0;
    width: 100%;
    padding: 60px 20px 60px;
    background: #4b87f7;
    z-index: 10;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-title {
    font-size: 3.5vw;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2.5vw;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.footer-email:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.email-icon {
    font-size: 2.8vw;
    animation: bounce 2s ease-in-out infinite;
}

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

.footer-divider {
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 20%, 
        rgba(255, 255, 255, 0.5) 80%, 
        transparent 100%);
    border-radius: 2px;
    margin: 10px 0;
}

.footer-love {
    font-size: 2.2vw;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1.3em;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.1);
    }
}

.footer-emoji {
    font-size: 2.5vw;
    margin: 15px 0 0 0;
    letter-spacing: 15px;
    animation: float 3s ease-in-out infinite;
}

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

/* Mobile Footer Styles */
@media (max-width: 700px) {
    #main-footer {
        top: 790vw;
        padding: 40px 15px 40px;
        background: #4897ff;
        min-height: 40vw;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-title {
        font-size: 5.5vw;
        margin: 0 0 15px 0;
    }

    .footer-email {
        font-size: 4vw;
        padding: 12px 25px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        gap: 10px;
    }

    .footer-email:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .email-icon {
        font-size: 4.5vw;
    }

    .footer-divider {
        height: 3px;
        width: 70%;
    }

    .footer-love {
        font-size: 3.5vw;
    }

    .footer-emoji {
        font-size: 4vw;
        letter-spacing: 10px;
        margin: 12px 0 0 0;
    }
}
