* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('media/bingbongcursor.png'), auto;
}

@font-face {
    font-family: 'BingBong';
    src: url('media/bingbong_revised.otf') format('opentype');
}

:root {
    --bing-green: #b6dc75;
    --light-green: #d8edbb;
    --cream: #faf7f0;
    --soft-pink: #f8d0cd;
    --soft-blue: #c5dff8;
    --soft-yellow: #fff2cc;
    --soft-purple: #e6d9f2;
    --soft-orange: #fde2cc;
    --soft-teal: #c4e6e8;
    --soft-lavender: #e1d4f0;
    --text-dark: #4a5c3a;
    --text-light: #7a8b6a;
    --dark-green: #5a7340;
}

body {
    font-family: 'BingBong', 'Comic Neue', cursive;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.content-side {
    flex: 0 0 45%;
    position: relative;
}

.image-side {
    flex: 0 0 50%;
    position: relative;
}

.content-side h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.content-side p {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.right {
    order: 2;
}

.left {
    order: 1;
}

.centered {
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.hero {
    height: 100vh;
    background-color: var(--bing-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.main-img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    filter: blur(8px) brightness(0.3);
}

.title {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-big {
    background-color: var(--cream);
}

.card-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.section-buff {
    background-color: var(--soft-pink);
}

.split {
    position: relative;
    overflow: hidden;
}

.buff-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -15px 15px 0 var(--dark-green);
}

.buff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.section-chillin {
    background-color: var(--soft-blue);
}

.circle-frame {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 10px solid white;
    margin: 0 auto;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-cool {
    background-color: var(--soft-yellow);
    padding: 3rem 0;
}

.diamond-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.diamond {
    width: 400px;
    height: 400px;
    margin: 30px;
    transform: rotate(45deg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: white;
}

.diamond img {
    width: 141.42%;
    height: 141.42%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -70.71%;
    margin-top: -70.71%;
}

.section-kill {
    background-color: #0a0a0a;
    color: white;
    position: relative;
    isolation: isolate;
}

.grain-overlay {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain-move 0.5s steps(4) infinite;
}

@keyframes grain-move {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 2%); }
    50% { transform: translate(2%, -2%); }
    75% { transform: translate(-2%, -2%); }
}

.dramatic-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    position: relative;
    z-index: 3;
}

.dramatic-text {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
    z-index: 4;
}

.dramatic-text h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff3333;
    font-weight: 700;
}

.dramatic-text p {
    font-size: 1.8rem;
    color: #ff6666;
    margin-bottom: 2rem;
}

.dramatic-image {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.vhs-screen {
    position: relative;
    width: 90%;
    height: 80%;
    overflow: hidden;
}

.vhs-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.7) contrast(1.4) saturate(0.6);
    animation: vhs-distort 0.2s infinite;
}

@keyframes vhs-distort {
    0% {
        transform: translateX(0) scaleX(1);
        filter: grayscale(40%) brightness(0.7) contrast(1.4) saturate(0.6);
    }
    20% {
        transform: translateX(1px) scaleX(1.001);
        filter: grayscale(45%) brightness(0.68) contrast(1.42) saturate(0.58);
    }
    40% {
        transform: translateX(-1px) scaleX(0.999);
        filter: grayscale(38%) brightness(0.72) contrast(1.38) saturate(0.62);
    }
    60% {
        transform: translateX(0.5px) scaleX(1.0005);
        filter: grayscale(42%) brightness(0.69) contrast(1.41) saturate(0.59);
    }
    80% {
        transform: translateX(-0.5px) scaleX(0.9995);
        filter: grayscale(41%) brightness(0.71) contrast(1.39) saturate(0.61);
    }
    100% {
        transform: translateX(0) scaleX(1);
        filter: grayscale(40%) brightness(0.7) contrast(1.4) saturate(0.6);
    }
}

.section-megabuff {
    background-color: var(--soft-orange);
    position: relative;
}

.mega-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-img {
    width: 80%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    position: absolute;
    z-index: 2;
}

.mega-text {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 3;
}

.mega-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.mega-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.section-plane {
    background-color: var(--soft-teal);
    position: relative;
}

.sky-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 50%;
}

.cloud1 {
    width: 150px;
    height: 60px;
    top: 20%;
    left: 10%;
    opacity: 0.7;
}

.cloud2 {
    width: 200px;
    height: 80px;
    top: 40%;
    right: 15%;
    opacity: 0.8;
}

.cloud3 {
    width: 120px;
    height: 50px;
    bottom: 30%;
    left: 30%;
    opacity: 0.6;
}

.plane-path {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.plane-img {
    width: 300px;
    height: auto;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sky-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    z-index: 3;
}

.sky-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.sky-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.section-rock {
    background-color: var(--soft-purple);
    position: relative;
}

.rock-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.rock-frame {
    width: 350px;
    height: 450px;
    overflow: hidden;
    transform: rotate(-5deg);
    box-shadow: 15px 15px 0 var(--bing-green);
    border: 10px solid white;
    position: relative;
}

.rock-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.rock-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-small {
    background-color: var(--soft-lavender);
    position: relative;
}

.small-text {
    text-align: center;
    margin-bottom: 3rem;
}

.staggered-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item {
    width: 300px;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: white;
    padding: 15px;
}

.main-item {
    transform: rotate(3deg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.section-wow {
    background-color: var(--light-green);
    position: relative;
}

.polaroid-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.polaroid {
    width: 350px;
    background-color: white;
    padding: 20px 20px 70px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
}

.polaroid-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid-caption {
    text-align: center;
}

.polaroid-caption h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.polaroid-caption p {
    font-size: 1rem;
    color: var(--text-dark);
}

.footer {
    padding: 3rem 0;
    background-color: var(--bing-green);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dashboard-link:hover {
    transform: scale(1.1);
}

.footer-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    animation: spin 20s linear infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dashboard-link:hover .footer-img {
    animation: spin 2s linear infinite;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.manager-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--dark-green);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.manager-link:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .section-inner {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .content-side, .image-side {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .right, .left {
        order: unset;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .content-side h2 {
        font-size: 2rem;
    }
    
    .content-side p {
        font-size: 1.2rem;
    }
    
    .card-frame, .circle-frame, .diamond {
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1.2;
    }
    
    .dramatic-container {
        flex-direction: column;
    }
    
    .dramatic-text, .dramatic-image {
        flex: 0 0 100%;
    }
    
    .mega-img {
        width: 90%;
    }
    
    .mega-text {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        margin-top: -80px;
    }
    
    .plane-img {
        width: 200px;
    }
    
    .polaroid {
        width: 280px;
    }
    
    .polaroid-img {
        height: 280px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.75rem;
    }
    
    .section-inner {
        padding: 3rem 2rem;
    }
    
    .content-side h2 {
        font-size: 2.5rem;
    }
    
    .content-side p {
        font-size: 1.3rem;
    }
    
    .card-frame, .circle-frame, .diamond {
        max-width: 400px;
    }
    
    .polaroid {
        width: 350px;
    }
    
    .polaroid-img {
        height: 350px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
}