:root{
    --drawer-width-desktop: 250px;
    --drawer-width-mobile: 200px;
    --gold: #ffd13c;
    --muted-paper: #fff4d8;
    --menu-text-color: rgb(255, 250, 199);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
            cursor: none !important;
        }
    
body {
                font-family: "Amarante",serif;

    display: block;      
    overflow-y: hidden;    
    overflow-x: hidden;  
    min-height: 100vh;   
    margin: 0;
    background-color: #000; 
    position: relative;
    user-select: none;
    perspective: 1000px;

}

a, button, [role="button"], [tabindex="0"], .html,body {
            cursor: none !important;}

#black-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 9999;
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
    display: block;
    transition: clip-path 1s ease-in-out, opacity 1s ease-out;
}

#white-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    transition: opacity 0.8s ease-in-out;
    z-index: 9999;
    opacity: 1;
}


#black-overlay.expanding {
    clip-path: circle(150% at 50% 50%);
}

#black-overlay.fading {
    opacity: 0;
}

#main-content.hidden{

    display: none;
}

#main-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transition: none;
}

.card-scene{
    max-width: 600px;
    width: 90vw;
    max-height: 1000px;
    height: 85vh;
    perspective: 1000px;
    z-index: 1000;
    transition: opacity 0.8s ease-out;
    margin: auto;
    position: relative;
    transform: translateZ(10px);
    pointer-events: auto;
}


#flip-button {
    position: fixed;
    top: calc(50% + 35vh);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #84d394;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 10px #727272e6;
    transition: background-color 0.2s;
    z-index: 501;
}

#flip-button:hover {
    background-color: #66b375;
    box-shadow: 0 4px 10px #ffd13ce6;
}

.PostCard-flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    z-index: 1000;
}

.card-face img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}    

.backcard {
    transform: rotateY(180deg);
}

.PostCard-flipper.is-flipped {
    transform: rotateY(180deg);
}


.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; 
    background: linear-gradient(to bottom,#87CEEB 0%,#4682B4 50%,#F5DEB3 80%,#D2B48C);
    z-index: -10;
}

.video{
    position: fixed;

    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
}


#click-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    pointer-events: auto;
    z-index: 100;
}


.white-screen-faded { opacity: 0 !important; }


#click-blocker.hidden {
    pointer-events: none;
    display: none;
}

#dissapearingmessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: 'Emilys Candy', cursive;
    font-size: 2.5rem;
    color: #ffd13ce6; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 900;
    text-align: center;
    pointer-events: none;
    color: #fffac8; 
    text-shadow:
        0 0 7px #FFA500,
        0 0 15px #FF8800,
        0 0 25px #FF6600,
        0 0 45px #FF4500;

}

#dissapearingmessage.show {
    opacity: 1;
    visibility: visible;
}


.pictures {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    width: calc(100vw - 100px);
    height: 100vh;
    pointer-events: auto;
    z-index: 5;
    box-sizing: border-box;
}


.visible {
    opacity: 1;
    visibility: visible;
}    

.seashell {
    position: absolute;
    width: 6vw;
    height: 6vw;
    pointer-events: auto;
    background-color: transparent;
    cursor: pointer;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    perspective: 1000px;
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
            opacity 0.8s,
            z-index 0s;
    transform: translateY(0px);
}

.seashell.is-flipping-or-zooming {
    animation: none !important;
    z-index: 10000;
}

.seashell.is-flipping-or-zooming .shell-back {
    border-width: 0.5px; 
    transition: opacity 0.8s ease;
}

.seashell.is-zooming-to-center {
 position: fixed !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    transition: transform 1.2s ease-in-out, 
                top 1.2s ease-in-out, 
                left 1.2s ease-in-out, 
                opacity 0.8s !important;
}

.seashell.is-flipping-or-zooming { animation: none !important; pointer-events: none; }
.seashell-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;

}

.shell-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.shell-face img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.85;
}    

.shell-face video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    width: 75vw;
    height: 75vh;
    max-width: 1200px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center
}

.lightbox-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.lightbox-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, .7);
}

.lightbox-video::-webkit-media-controls-play-button,
.lightbox-video::-webkit-media-controls-volume-slider,
.lightbox-video::-webkit-media-controls-mute-button{
    color: white;
}

#lightbox-content .video-container{
    max-width: 90vw;
    max-height: 90vh;
}

.seashell:hover .shell-face img {
    filter: drop-shadow(3px 5px 5px rgba(255, 209, 60, 0.902))
}    

.shell-back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1.5px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.shell-back::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0) 50%
    );
    pointer-events: none;
    z-index: 5;
}

.seashell-flipper.is-flipped {
    transform: rotateY(180deg);
}

.seashell img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

/*blue*/
#img1 { top: 64%; left: 8%; }
#img2 { top: 85%; left: 65%; }

/*lightpink*/
#img4 { top: 54%; left: 20%; }
#img5 { top: 60%; left: 95%; }
#img6 { top: 80%; left: 48%; }
/*pink*/
#img7 { top: 75%; left: 60%; }
#img8 { top: 75%; left: 5%; }
#img9 { top: 57%; left: 25%; }
/*orange*/
#img11 { top: 68%; left: 55%; }
#img12 { top: 78%; left: 30%; }
/*white*/
#img14 { top: 69%; left: 37%; }
/*brown*/
#img16 { top: 89%; left: 88%; }
#img17 { top: 81%; left: 40%; }
#img18 { top: 63%; left: 63%; }
#img25 { top: 59%; left: 3%; }
/*salmon*/
#img19 { top: 50%; left: 86%; }
#img20 { top: 70%; left: 68%; } /*67   67*/
#img24 {  top: 70%; left: 18%; }
/*beige*/
#img21 { top: 88%; left: 19%; }
#img22 { top: 68%; left: 44%; }
#img23 { top: 88%; left: 76%; }

.liquid-glass {
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.25); 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4), 
        0 8px 32px rgba(0, 0, 0, 0.1); 
}

.liquid-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.liquid-glass::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%; 
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0) 60%
    );
    pointer-events: none;
}
/* 
@keyframes floating0 {
    0% { transform: translateY(0px);}
    31.58% { transform: translateY(18px); }
    57.89% { transform: translateY(-18px); }
    100% { transform: translateY(0px);}
} */
/* 
@keyframes hover-pulse {
    0%{ transform: translateY(1.0) scale(0); }
    50%{ transform: translateY(1.15px) scale(1.15); } 
    100%{ transform: translateY(1.0) scale(1.25); }
} */

/* 
.seashell:hover {
    animation: hover-pulse 3s infinite ease-in-out;
} */



#lightbox{
    position:fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8); 
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: auto;
}

#lightbox.active{
    display: flex !important;
    opacity: 1;
}

#lightbox-content {
position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; 
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    
    border-radius: 30px !important; 
    border: 1.5px solid rgba(255, 255, 255, 0.3); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 100000;
            font-family: "Amarante",serif;

}

#lightbox-image, 
#lightbox-content img {
    display: block !important;
    max-width: 90vw !important;
    max-height: 80vh !important;
    object-fit: contain !important;

    border-radius: 25px !important; 
    
    overflow: hidden !important;

    clip-path: inset(0% 0% 0% 0% round 25px) !important;
    -webkit-clip-path: inset(0% 0% 0% 0% round 25px) !important;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    
    position: relative;
    z-index: 5;
}

#lightbox-content::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
    z-index: 10;
}

#lightbox-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: -1; 
}

#lightbox-content::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
    z-index: 2;
}

#lightbox-content img{
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

#lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 20px; 
    object-fit: contain;
    z-index: 5;
}


#close-lightbox {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100001; 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#close-lightbox:active{
    transform: scale(0.96);
}

#close-lightbox:hover {
    background-color: rgba(255, 255, 255, 1);
}

#close-lightbox::before,
#flip-button::before {
    content: ''; 
}

#close-lightbox::after,
#flip-button::after {
    content:'';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 150%;
    z-index: -1;
    background-repeat: no-repeat;
}

#close-lightbox.animate::before,
#flip-button.animate::before {
    top: -150%;
    background-image: radial-gradient(circle, #fff58a 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #fff58a 20%, transparent 30%),
        radial-gradient(circle, #fff58a 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #fff58a 15%, transparent 20%),
        radial-gradient(circle, #fff58a 20%, transparent 20%),
        radial-gradient(circle, #fff58a 20%, transparent 20%),
        radial-gradient(circle, #fff58a 20%, transparent 20%),
        radial-gradient(circle, #fff58a 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    animation: topBubbles 0.6s ease-in-out forwards;
}
@keyframes topBubbles {
    50%{
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100%{
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
#close-lightbox.animate::after,
#flip-button.animate::after{
    bottom: -150%;
    background-image: radial-gradient(circle, #fff58a 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #fff58a 15%, transparent 20%),
    radial-gradient(circle, #fff58a 20%, transparent 20%),
    radial-gradient(circle, #fff58a 20%, transparent 20%),
    radial-gradient(circle, #fff58a 20%, transparent 20%),
    radial-gradient(circle, #fff58a 20%, transparent 20%),
    radial-gradient(circle, #fff58a 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 10% 0%, 30% 10%, 55% 0%, 70% 0%, 85% 0%, 85% 0%, 70% 0%, 70% 0%;
    animation: bottomBubbles 0.6s ease-in-out forwards;
}
@keyframes bottomBubbles {
    50%{
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100%{
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 115% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.white-screen-faded { opacity: 0 !important; }
.pictures {
    left: 15px;
    right: 15px;
    width: calc(100vw - 40px);
}

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0, 137, 119, 0.2);
    z-index:10; 
    opacity:0;
    visibility:hidden;
    transition:opacity .4s ease, visibility .4s ease;
}
#overlay.visible{
    opacity:1;
    visibility:visible;
}

.fairy-dust-particle{
            position: fixed;
            width: 10px;
            height: 10px;
            background-color: rgba(255,220,100,0.9);
            pointer-events: none;
            transform: translate(-50%,-50%);
            z-index: 99999;
            opacity: 1;
            border-radius: 50%;
            animation: trailFade 1.2s forwards ease-out;
            filter: drop-shadow(0 0 4px #FFDB58);
        }
        #video-cursor{
            position: fixed;
            height: 83px;
            pointer-events: none; 
            z-index: 1000000000; 
            transform: translate(-50%, -50%);
            overflow: hidden; 
            filter: drop-shadow(0 0 7px #ae8800);
        }
        #video-cursor img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
@keyframes trailFade {
    to{
        opacity: 0;
        transform: translate(-50%,-50%)scale(0.2);
    }
}

        #menu-trigger{
            position:fixed;
            top:15px;
            left:50px;
            width:70px;
            z-index:10001;
            transition: transform 0.5s ease;
            background-color:transparent;
        }
        #menu-trigger:hover{
            transform:scale(1.4);
        }
        #menu-trigger img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        #drawer-menu{
            position: fixed;
            top:0;
            left:0;
            width: 250px;
            height: 100%;
            background-image: url('image/Summer_Leaves.png');
            filter: drop-shadow(0 0 4px rgb(0, 0, 0));
            background-size: cover;
            background-position: right;
            background-repeat: no-repeat;
            transform: translateX(-100%);
            transition: transform 0.6s ease-out;
            z-index: 10000;
            padding-top:80px;
        }

        #drawer-menu.open{
            transform: translateX(0);
        }
        #drawer-menu ul{
            list-style:none;
            padding: 0;
            margin: 0;
        }
        #drawer-menu li{
            position: relative;
            margin:10px 0;
            text-align: center;
        }
        #drawer-menu li a{
            display: flex;
            align-items: center;
            justify-content: 40%;
            text-decoration: none;
            color: rgb(255, 250, 199);
            font-size: 1.2rem;
            padding: 5px 5px;
        }
        #drawer-menu li a:hover{
            color: var(--menu-hover-color);
        }

        #menu-overlay{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
    background-color: rgba(0, 127, 152, 0.785);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
        }
        #menu-overlay.open{
            opacity: 1;
            visibility: visible;
        }
        #drawer-menu .menu-icon{
            width: 35px;
            height:35px;
            margin-left: 10px;
            object-fit: contain;
            filter: drop-shadow(0 0 5px rgb(0, 0, 0));
        }
        #drawer-menu .menu-link-text{
            opacity: 1;
            color: #fff1d5;
            max-width: 0;
            overflow:visible;
            white-space: nowrap;
            transition: opacity 1s ease,max-width 1s ease;
            margin-left: 5px;   
            font-family: "Jim Nightshade", cursive;
            font-weight: 400;
            font-size: 1.6rem;
            text-align: center;
                                    text-shadow: 0 0 10px #000000, 0 0 20px #000000, 0 0 40px #000000;

        }

        #drawer-menu li a:hover .menu-link-text{
            opacity: 1;
            max-width:200px;
            color: #fff8e9;
            text-align: center;
            text-shadow: 0 0 10px #f4f3d0, 0 0 20px #f4f3d0, 0 0 40px #f4f3d0;
        }

        .lang-switch-container {
            padding: 10px 10px;
    position: absolute; 
    bottom: 20px;       
    width: 100%;       
    text-align: center;
}

.lang-switch-link {
                margin-left: 50px;   

    align-items: left;
    justify-content: left !important;
    padding-top: 30px;
    padding: 5px 10px;    

}

.lang-switch-text {
    opacity: 1 !important; 
    max-width: none !important; 
    font-size: 1.2rem !important; 
    color: var(--gold) !important;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
    transition: none !important; 
        text-decoration: underline;

}

@media (hover: none) and (pointer: coarse) {
    
    html, body {
        cursor: default !important;
    }
    a, button, [role="button"], [tabindex="0"] {
        cursor: pointer !important;
    }

    #video-cursor, .fairy-dust-particle {
        display: none !important;
    }
}





@media (max-width: 1024px) {
.seashell {
    width: 10vw; 
    height: 10vw;
}
#drawer-menu .menu-link-text {
        opacity: 1;
        max-width: 200px;
        font-size: 1.2rem;
        color: #fff8e9;
    }

#drawer-menu{width: 350px;}
#drawer-menu li a{justify-content:left;padding:13px 15px; }
            #drawer-menu .menu-link-text{
                opacity:1;
                text-align:left;
                font-size:2rem;;
            }

/*blue*/
#img1 { top: 73%; left: 18%; }
#img2 { top: 63%; left: 55%; }
/*lightpink*/
#img4 { top: 73%; left: 44%; }
#img5 { top: 53%; left: 95%; }
#img6 { top: 83%; left: 22%; }
/*pink*/
#img7 { top: 75%; left: 32%; }
#img8 { top: 69%; left: 5%; }
#img9 { top: 60%; left: 28%; }
/*orange*/
#img11 { top: 50%; left: 5%; }
#img12 { top: 78%; left: 29%; }
/*white*/
#img14 { top: 64%; left: 14%; }
/*brown*/
#img16 { top: 85%; left: 87%; }
#img17 { top: 81%; left: 39%; }
#img18 { top: 63%; left: 68%; }
#img25 { top: 62%; left: 3%; }
/*salmon*/
#img19 { top: 75%; left: 89%; }
#img20 { top: 63%; left: 40%; } /*67   67*/
#img24 {  top: 56%; left: 11%; }
/*beige*/
#img21 { top: 80%; left: 7%; }
#img22 { top: 70%; left: 31%; }
#img23 { top: 60%; left: 83%; }
}

@media (max-width:768px) {

        #drawer-menu .menu-link-text {
            opacity: 1;
            max-width: 150px;
        }
        #menu-trigger{width:70px;top:15px;left:30px;}

         #drawer-menu .menu-link-text { opacity: 1; max-width: 150px; font-size: 1.8rem; }
        #menu-trigger{width: 50px; left: 20px; top: 20px;}
        #drawer-menu { width: 320px; }
        #drawer-menu li a { font-size: 1rem; padding: 5px 10px; }
        #drawer-menu .menu-icon { width: 25px; height: 25px; margin-left: 0; }
    }
    

        

@media (max-width:500px) {
       #drawer-menu .menu-link-text {
            opacity: 1;
            max-width: 150px;
            font-size: 1.2rem;         }
            
             #drawer-menu .menu-link-text { opacity: 1; max-width: 150px; font-size: 1.8rem; }
        #menu-trigger{width: 50px; left: 20px; top: 20px;}
        #drawer-menu { width: 320px; }
        #drawer-menu li a { font-size: 1rem; padding: 5px 10px; }
        #drawer-menu .menu-icon { width: 25px; height: 25px; margin-left: 0; }}
        
        
        
@media (max-width: 480px) {
.seashell {
    width: 15vw; 
    height: 15vw;
}


#drawer-menu .menu-link-text {
            opacity: 1;
            max-width: 150px;
            font-size: 1.2rem;         }
            
            #drawer-menu .menu-link-text { opacity: 1; max-width: 150px; font-size: 1.8rem; }
        #menu-trigger{width: 50px; left: 20px; top: 20px;}
        #drawer-menu { width: 320px; }
        #drawer-menu li a { font-size: 1rem; padding: 5px 10px; }
        #drawer-menu .menu-icon { width: 25px; height: 25px; margin-left: 0; }
        

/*blue*/
#img1 { top: 64%; left: 42%; }
#img2 { top: 82%; left: 6% }
/*lightpink*/
#img4 { top: 77%; left: 35%; }
#img5 { top: 55%; left: 96%; }
#img6 { top: 85%; left: 92%; }
/*pink*/
#img7 { top: 80%; left: 45%; }
#img8 { top: 75%; left: 3%; }
#img9 { top: 58%; left: 27%; }
/*orange*/
#img11 { top: 50%; left: 4%; }
#img12 { top: 78%; left: 63%; }
/*white*/
#img14 { top: 62%; left: 3%; }
/*brown*/
#img16 { top: 86%; left: 69%; }
#img17 { top: 72%; left: 38%; }
#img18 { top: 62%; left: 83%; }
#img25 { top: 70%; left: 3%; }
/*salmon*/
#img19 { top: 84%; left: 30%; }
#img20 { top: 71%; left: 21%; } /*67   67*/
#img24 {  top: 54%; left: 12%; }
/*beige*/
#img21 { top: 80%; left: 19%; }
#img22 { top: 66%; left: 22%; }
#img23 { top: 64%; left: 64%; }
}

@media (max-width:1025px){
                #drawer-menu{
                width: 350px;
            }
            #drawer-menu li a{
                justify-content:left;
                padding:10px 15px;                
            }
            #drawer-menu .menu-link-text{
                opacity:1;
                text-align:left;
                font-size:2rem;;
            }
            #drawer-menu .menu-link-text{ max-width:150px; opacity:1; }
        }


        @media (max-width: 932px) and (orientation: landscape) {

    #drawer-menu {
        /* Fix: height must be 100% and overflow set to scroll or auto */
        height: 100%;
        overflow-y: auto; 
        overflow-x: hidden; /* Prevent horizontal wobbling */
        -webkit-overflow-scrolling: touch; 
        
        /* Increase top padding to avoid the Menu Trigger button */
        padding-top: 60px;
        padding-bottom: 50px; 
    }
    
}


#orientation-msg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 48, 15, 0.85); /* Slightly higher opacity for readability */
    color: #ffd13c; /* Gold */
    padding-top: 50%;
    display: none;          /* This will be changed to 'flex' by JS */
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    text-align: center;
    
    padding: 20px;
    box-sizing: border-box; /* Ensures padding doesn't grow the 100% width */
    z-index: 2000000;
    font-family: "Patrick Hand", cursive;
    font-size: 1.5rem;      /* Increased size for better visibility when centered */
    pointer-events: none; 
}

/* Update the Media Query to use flex */
@media (orientation: landscape) and (pointer: coarse) and (max-height: 600px) {
    #orientation-msg {
        display: flex; 
    }
}