@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 17px;
    height: 17px;
}

::-webkit-scrollbar-track {
    background-image: url('bg-scrollbar-track@2x.png');
    background-size: 17px 17px;
    background-repeat: repeat;
    background-color: #c0c0c0;
    border: 1px solid #808080;
    box-shadow: inset 1px 1px 0 #808080;
}

::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow:
        inset 1px 1px 0 #dfdfdf,
        inset -1px -1px 0 #808080;
    min-height: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #dfdfdf;
}

::-webkit-scrollbar-thumb:active {
    background-color: #808080;
    border-color: #808080 #ffffff #ffffff #808080;
    box-shadow:
        inset 1px 1px 0 #808080,
        inset -1px -1px 0 #dfdfdf;
}

::-webkit-scrollbar-button {
    background-color: #c0c0c0;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow:
        inset 1px 1px 0 #dfdfdf,
        inset -1px -1px 0 #808080;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center;
}

::-webkit-scrollbar-button:hover {
    background-color: #dfdfdf;
}

::-webkit-scrollbar-button:active {
    background-color: #808080;
    border-color: #808080 #ffffff #ffffff #808080;
    box-shadow:
        inset 1px 1px 0 #808080,
        inset -1px -1px 0 #dfdfdf;
}

::-webkit-scrollbar-button:vertical:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5"><path d="M0 5 L4 0 L8 5 Z" fill="%23000000"/></svg>');
}

::-webkit-scrollbar-button:vertical:increment {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5"><path d="M0 0 L4 5 L8 0 Z" fill="%23000000"/></svg>');
}

::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="8" viewBox="0 0 5 8"><path d="M5 0 L0 4 L5 8 Z" fill="%23000000"/></svg>');
}

::-webkit-scrollbar-button:horizontal:increment {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="8" viewBox="0 0 5 8"><path d="M0 0 L5 4 L0 8 Z" fill="%23000000"/></svg>');
}

::-webkit-scrollbar-corner {
    background-color: #c0c0c0;
}

@keyframes rainbow {
    0% { color: #ff0000; }
    17% { color: #ff8800; }
    33% { color: #ffff00; }
    50% { color: #00ff00; }
    67% { color: #0088ff; }
    83% { color: #ff00ff; }
    100% { color: #ff0000; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(5px) translateX(-10px); }
    75% { transform: translateY(-10px) translateX(5px); }
}

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background-color: #000;
    background-image:
        url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.1) 2px,
            rgba(255, 0, 255, 0.1) 4px
        );
    color: #00ff00;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Hide scrollbar on iOS but keep scroll functionality */
@supports (-webkit-touch-callout: none) {
    /* iOS only */
    ::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    body {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s infinite;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    box-shadow: 0 0 10px white;
    animation: sparkle 3s infinite;
}

header {
    background: #d0d0d0;
    border: 5px ridge #c0c0c0;
    padding: 1rem;
    position: relative;
    box-shadow:
        0 0 20px #ff00ff,
        inset 0 0 20px rgba(255, 255, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

@keyframes rainbow-bg {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: rainbow 2s infinite;
    text-shadow:
        2px 2px 0px #ff00ff,
        4px 4px 0px #00ffff,
        6px 6px 0px #ffff00,
        8px 8px 10px rgba(0, 0, 0, 0.8);
    transform: perspective(500px) rotateY(-15deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffff00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: linear-gradient(180deg, #ff69b4, #ff1493);
    border: 3px outset #ff00ff;
    border-radius: 0;
    display: inline-block;
    text-shadow: 1px 1px 0px #000;
    transition: all 0.1s;
}

.nav-links a:hover {
    background: linear-gradient(180deg, #00ff00, #00aa00);
    border-style: inset;
    transform: scale(1.1);
    animation: blink 0.5s infinite;
}

.nav-links a:active {
    transform: scale(0.95);
}

.blink-text {
    animation: blink 1s infinite;
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
}

marquee {
    font-size: 1.5rem;
    color: #ffff00;
    text-shadow: 2px 2px 4px #ff00ff;
    font-weight: bold;
    padding: 10px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.3), transparent);
}

.hero {
    margin-top: 20px;
    min-height: 600px;
    background: #000;
    border: 5px double #00ff00;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h2 {
    font-size: 4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    min-height: 5rem;
}

.hero-content h2 .typewriter-text {
    background: linear-gradient(45deg,
        #ff0000, #ff7700, #ffff00, #00ff00,
        #0099ff, #6633ff, #ff00ff, #ff0000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-bg 3s linear infinite;
}

.hero-content h2 .typewriter-cursor {
    color: #00ff00;
    font-weight: bold;
    font-size: 4rem;
    margin-left: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    color: #00ffff;
    text-shadow:
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff1493;
    color: #ffff00;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 3px solid #000;
    transition: all 0.1s;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000;
}

.cta-button:hover {
    border-style: inset;
    transform: scale(1.05);
}

.butterfly-gif {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 100;
    pointer-events: none;
}

.services {
    background: repeating-linear-gradient(
        45deg,
        #d0d0d0,
        #d0d0d0 10px,
        #c0c0c0 10px,
        #c0c0c0 20px
    );
    padding: 4rem 2rem;
    border: 10px ridge #00ff00;
    margin: 20px;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    color: #ffff00;
    text-shadow:
        3px 3px 0px #ff00ff,
        6px 6px 0px #00ffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: rainbow 3s infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    padding: 2rem;
    border: 5px solid #ffff00;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: perspective(500px) rotateX(-5deg);
    transition: all 0.3s;
}

.service-stars {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.card-star {
    color: #333;
    font-size: 1.2rem;
    animation: lightUp 2.5s infinite;
}

@keyframes lightUp {
    0%, 80%, 100% {
        color: #333;
        text-shadow: none;
        transform: scale(1);
    }
    20%, 60% {
        color: #ffff00;
        text-shadow: 0 0 10px #ffff00;
        transform: scale(1.2);
    }
}

.card-star:nth-child(1) { animation-delay: 0s; }
.card-star:nth-child(2) { animation-delay: 0.3s; }
.card-star:nth-child(3) { animation-delay: 0.6s; }
.card-star:nth-child(4) { animation-delay: 0.9s; }
.card-star:nth-child(5) { animation-delay: 1.2s; }

.service-card:hover {
    transform: perspective(500px) rotateX(5deg) scale(1.1);
    border-color: #00ff00;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.1); }
    25% { transform: translateX(-5px) scale(1.1); }
    75% { transform: translateX(5px) scale(1.1); }
}

.service-card h3 {
    color: #000;
    background: #ffff00;
    padding: 5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card p {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px #000;
}

.star-rating {
    margin-top: 15px;
    font-size: 2rem;
    text-align: center;
}

.star {
    display: inline-block;
    color: #333;
    margin: 0 2px;
    animation: fillStar 3s infinite;
    transform-origin: center;
}

@keyframes fillStar {
    0% {
        color: #333;
        transform: scale(1);
    }
    10% {
        color: #ffff00;
        text-shadow: 0 0 20px #ffff00;
        transform: scale(1.2);
    }
    60% {
        color: #ffff00;
        text-shadow: 0 0 20px #ffff00;
        transform: scale(1);
    }
    70% {
        color: #333;
        text-shadow: none;
        transform: scale(1);
    }
    100% {
        color: #333;
        text-shadow: none;
        transform: scale(1);
    }
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

/* Beach Background Divider */
.beach-divider {
    width: 100%;
    height: 250px;
    background-image: url('beachbackround.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Beach moon - top left */
.beach-moon {
    position: absolute;
    left: 30px;
    top: 20px;
    width: 70px;
    z-index: 2;
}

/* Beach seal - stays still on the side */
.beach-seal {
    position: absolute;
    right: 50px;
    bottom: 80px;
    width: 80px;
    z-index: 2;
}

/* Beach shark fin - moves across bottom in water */
.beach-sharkfin {
    position: absolute;
    bottom: 20px;
    width: 60px;
    z-index: 2;
    animation: swimAcross 15s linear infinite;
}

/* Beach seagull - moves across higher up */
.beach-seagull {
    position: absolute;
    top: 30px;
    width: 70px;
    z-index: 2;
    animation: flyAcross 12s linear infinite;
}

/* Beach whale - dives across in the water */
.beach-whale {
    position: absolute;
    bottom: 50px;
    width: 90px;
    z-index: 2;
    animation: swimAcrossReverse 18s linear infinite;
    animation-delay: 5s;
}

@keyframes swimAcross {
    0% {
        left: calc(100% + 100px);
    }
    100% {
        left: -100px;
    }
}

@keyframes flyAcross {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

@keyframes swimAcrossReverse {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

.about {
    background: #000;
    border: 10px double #ff00ff;
    margin: 20px;
    padding: 3rem 2rem;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #00ff00;
}

.about-text {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 0, 0.1) 10px,
        rgba(255, 255, 0, 0.1) 20px
    );
    padding: 2rem;
    border: 3px dashed #00ffff;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.gallery {
    background: linear-gradient(45deg, #000, #330033, #000033, #000);
    padding: 4rem 2rem;
    border: 5px groove #ff00ff;
    margin: 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    animation: rainbow 2s infinite;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #00ffff,
        0 0 30px #ffff00;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border: 5px solid #ff00ff;
    box-shadow:
        5px 5px 0px #ffff00,
        10px 10px 0px #00ffff;
    transition: all 0.3s;
    cursor: pointer;
    background: #000;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow:
        5px 5px 0px #00ff00,
        10px 10px 0px #ff00ff,
        15px 15px 20px rgba(255, 0, 255, 0.5);
    border-color: #ffff00;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 40px;
    background: linear-gradient(180deg, #ff0000, #990000);
    color: #ffff00;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    padding: 10px 20px;
    border: 3px outset #ffff00;
    cursor: pointer;
    z-index: 100001;
    transition: all 0.1s;
    text-shadow: 2px 2px #000;
    letter-spacing: 2px;
}

.modal-close:hover {
    background: linear-gradient(180deg, #990000, #ff0000);
    border-style: inset;
    transform: scale(0.95);
}

.modal-close:active {
    transform: scale(0.9);
}

.modal-content {
    padding: 80px 20px 40px;
    max-width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.modal-content h3 {
    color: #ffff00;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px #ff00ff;
    animation: rainbow 3s infinite;
    text-transform: uppercase;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.modal-image {
    border: 3px solid #ff00ff;
    transition: all 0.3s;
    box-shadow:
        3px 3px 0px #ffff00,
        6px 6px 0px #00ffff;
}

.modal-image:hover {
    transform: scale(1.05) rotate(-2deg);
    border-color: #00ff00;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999999;
    padding: 80px 20px 20px;
    box-sizing: border-box;
    overflow: auto;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 40px;
    background: linear-gradient(180deg, #ff0000, #990000);
    color: #ffff00;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    padding: 10px 20px;
    border: 3px outset #ffff00;
    cursor: pointer;
    z-index: 1000001;
    transition: all 0.1s;
    text-shadow: 2px 2px #000;
    letter-spacing: 2px;
}

.lightbox-close:hover {
    background: linear-gradient(180deg, #990000, #ff0000);
    border-style: inset;
    transform: scale(0.95);
}

#lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    border: 5px solid #ff00ff;
    box-shadow:
        0 0 20px #ff00ff,
        0 0 40px #ffff00,
        0 0 60px #00ffff;
}

.contact {
    background: #d0d0d0;
    padding: 4rem 2rem;
    border: 10px ridge #00ff00;
    margin: 20px;
    color: #8b0000;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: #000;
    background: #ffff00;
    padding: 10px;
    border: 5px solid #ff00ff;
    display: inline-block;
    margin: 0 auto 2rem;
    width: 100%;
    text-transform: uppercase;
    animation: blink 3s infinite;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 3px solid #ff00ff;
    background: #000;
    color: #00ff00;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 20px #ffff00;
    background: #330033;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: rainbow-bg 3s ease infinite;
    color: #000;
    border: 5px solid #000;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 3px;
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: scale(1.05);
    border-color: #fff;
    animation: shake 0.3s infinite, rainbow-bg 0.5s ease infinite;
}

footer {
    background: #000;
    border-top: 10px solid transparent;
    border-image: linear-gradient(90deg, #ff00ff, #ffff00, #00ffff, #ff00ff) 1;
    color: #00ff00;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    animation: rainbow 2s infinite;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ffff00;
    font-size: 2rem;
    text-decoration: none;
    padding: 10px 15px;
    background: #ff00ff;
    border: 3px solid #00ffff;
    display: inline-block;
    transition: all 0.2s;
}

.social-links a:hover {
    transform: rotate(360deg) scale(1.5);
    background: #00ff00;
    border-color: #ff00ff;
}

.web-ring {
    margin-top: 3rem;
    padding: 20px;
    background: repeating-linear-gradient(
        90deg,
        #000,
        #000 5px,
        #ff00ff 5px,
        #ff00ff 10px
    );
    border: 3px solid #ffff00;
}

.web-ring h4 {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: blink 2s infinite;
}

.button-collection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.counter {
    margin-top: 2rem;
    padding: 10px;
    background: #000;
    border: 2px solid #00ff00;
    display: inline-block;
}

.counter-display {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #00ff00;
    letter-spacing: 5px;
}

.divider-gif {
    width: 100%;
    height: 20px;
    background: url('data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==') repeat-x;
    margin: 2rem 0;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.2s;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #808080;
    margin: 5px 0;
    transition: all 0.3s;
}

.hamburger-text {
    display: block;
    color: #808080;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 5px;
}

.hamburger-menu:hover {
    background: linear-gradient(180deg, #ff0099, #ff00ff);
    border-style: inset;
    transform: scale(0.95);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.welcome-gif {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
}

/* Fake scrollbar for mobile */
.fake-scrollbar-track {
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    width: 17px !important;
    height: 100vh !important;
    background-image: url('bg-scrollbar-track@2x.png');
    background-size: 17px 17px;
    background-repeat: repeat;
    background-color: #c0c0c0;
    border-left: 2px solid #808080;
    box-shadow: inset 1px 1px 0 #808080;
    z-index: 10000 !important;
    pointer-events: none !important;
}

.fake-scrollbar-thumb {
    position: absolute;
    width: 15px;
    height: 60px;
    left: 1px;
    background: linear-gradient(to bottom, #ffffff 0%, #c0c0c0 50%, #808080 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow:
        inset 1px 1px 0 #dfdfdf,
        inset -1px -1px 0 #808080;
}

.floating-gif {
    position: absolute;
    pointer-events: none;
}

/* Gallery See More Button */
.gallery-see-more-container {
    text-align: center;
    margin: 30px 0;
    display: none;
}

.gallery-see-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ff1493;
    color: #ffff00;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 3px solid #000;
    transition: all 0.1s;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000;
    cursor: pointer;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
}

.gallery-see-more-btn:hover {
    border-style: inset;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item.hidden-mobile {
        display: none;
    }

    .gallery-see-more-container {
        display: block;
    }

    .footer-gifs {
        gap: 10px !important;
    }

    .footer-gifs img {
        width: 40px !important;
    }

    .footer-gifs img[alt="Welcome"] {
        width: 60px !important;
    }

    .footer-gifs img[alt="Laser"] {
        width: 50px !important;
    }
    .fake-scrollbar-track {
        display: block;
    }
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .welcome-gif {
        height: 40px;
        position: relative;
        left: 0;
        transform: none;
    }

    header {
        padding: 0.5rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .header-gif-hot, .header-gif-lava {
        margin-left: 10px !important;
    }

    nav {
        position: static;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #000, #330033);
        border: 5px double #ff00ff;
        border-top: 10px ridge #ffff00;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(255, 0, 255, 0.8);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px;
        font-size: 1.5rem;
        background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
        background-size: 400% 100%;
        animation: rainbow-bg 5s linear infinite;
        border: 3px solid #000;
    }

    .nav-links a:hover {
        background: #00ff00;
        animation: none;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .services-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* Mobile About Section - Use more horizontal space */
    .about {
        padding: 2rem 0.5rem;
        margin: 10px;
    }

    .about-text {
        padding: 0.75rem 0.5rem;
    }

    .about p {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        text-align: justify;
    }

    marquee {
        font-size: 1rem;
    }

    /* Mobile Hero Adjustments */
    .hero {
        min-height: 80vh;
        padding: 3rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-text {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .cta-button {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
        letter-spacing: 1px !important;
    }

    .blink-text {
        font-size: 1.3rem !important;
    }

    /* Adjust GIF positions for mobile */
    .hero img[src*="star.gif"] {
        width: 40px !important;
    }

    .hero img[src*="flowerreflection.gif"] {
        width: 100px !important;
        bottom: 5px !important;
        right: 10px !important;
        opacity: 0.9 !important;
    }

    .hero img[src*="shark.gif"] {
        width: 70px !important;
        bottom: 10px !important;
        right: 120px !important;
    }

    /* Give more vertical breathing room */
    .hero-content > div {
        margin-top: 20px !important;
    }

    /* Adjust shapes for mobile */
    .hero-shapes .shape-1 {
        width: 150px;
        height: 150px;
        top: -50px;
        right: -50px;
    }

    .hero-shapes .shape-2 {
        width: 100px;
        height: 100px;
    }

    .hero-shapes .shape-3 {
        width: 80px;
        height: 80px;
    }
}