/* shadow1.css - The Grove */

:root {
    --bg-color: #0a0a0a;
    --accent-pink: #ff007f;    /* Hot Neon Pink */
    --soft-pink: #ffb7c5;      /* Sakura Petal Pink */
    --dark-purple: #2d004d;    /* Deep Shadow Purple */
    --glow: 0 0 10px #ff007f, 0 0 20px #ff007f;
    --violet-shimmer: rgba(45, 0, 77, 0.6);
}

/*cursor*/
  
* {
    cursor: url('images/flowercursor1.png') 16 16, auto !important;
}

a, button, .toxic-button {
    cursor: url('images/flowercursor1.png') 16 16, pointer !important;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(var(--dark-purple) 1px, transparent 1px);
    background-size: 30px 30px; 
    color: var(--soft-pink);
    font-family: 'Trebuchet MS', sans-serif; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0;
    min-height: 100vh;
}

/* 2. HERO BANNER: The Cherry Blossom Treetops */
.hero-banner {
    width: 100%;
    max-width: 900px;
    height: 250px;
    background-image: url('titlebanner.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-pink);
    box-shadow: var(--glow);
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: var(--violet-shimmer);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

h1 {
    color: var(--accent-pink);
    text-shadow: var(--glow);
    font-size: 3.5rem;
    letter-spacing: -2px;
    text-transform: lowercase;
    margin: 0;
}

/* 3. THE GUARDIANS: Floating Creatures */
.floater {
    position: absolute;
    width: 100px;
    z-index: 10;
    filter: drop-shadow(0 0 8px var(--soft-pink));
    animation: drift 5s ease-in-out infinite;
    /* This removes the white background from the images */
    mix-blend-mode: screen; 
}

.bunny { top: 25%; left: 5%; }
.creature-2 { bottom: 25%; right: 5%; animation-delay: 2.5s; }
.shroom {top: 25%; right: 10%; animation-delay: 3s;}

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* 4. THE NEON GRID: 4 Flex Modules */
.neon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin-bottom: 40px;
}

/* Keeps the video from bursting out of the neon border */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* Optional: rounds the video corners to match your aesthetic */
}

/* Adjusting your existing flex-box for better spacing */
.flex-box {
    flex: 1 1 300px; /* Increased the basis slightly so the video isn't too tiny */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}





.blinkie-shelf {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3); /* Gives them a little "niche" in the wall */
    border-radius: 5px;
}

.blinkie-shelf img {
    image-rendering: pixelated; /* Keeps old-school GIFs looking sharp, not blurry */
    height: 31px; /* Standard blinkie height */
}

.flex-box {
    flex: 1 1 200px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--accent-pink);
    box-shadow: var(--glow);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-height: 100px;
}

    /* 7. THE COLLAGE GRID (Razzle Dazzle Row) */
.collage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    margin: 40px 0; /* Adds space so you get that "scroll action" */
}

.gif-zone {
    position: relative; /* This is key for when we layer stickers on top later! */
    overflow: hidden;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticker-base {
    width: 100%;
    height: auto;
    /* This makes the GIF look a bit more "integrated" into the dark vibe */
    filter: drop-shadow(0 0 5px var(--accent-pink));
}

.center-banner {
    flex: 1 1 350px; /* Makes the middle box slightly wider than the side ones */
    background: rgba(45, 0, 77, 0.3); /* A subtle violet tint */
    border-style: dashed; /* Gives it a "work in progress" or "stitcher" look */
}

/* 5. THE JOURNAL: Scrollable Content & Collage */
   .journal-container {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url('images/wpkawaii.jpg'); 
    background-size: cover;
    
    border: 2px solid var(--soft-pink);
    box-shadow: 0 0 15px rgba(255, 183, 197, 0.3);
    padding: 30px;
    border-radius: 5px; /* Keep it mostly square */
    color: var(--soft-pink);

    /* This "clips" the top-right corner off */
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 0% 100%);
    
    margin-bottom: 40px;
}

.scroll-box h3 {
    color: var(--accent-pink);
    text-transform: lowercase;
}

/* Making the scrollbar pink to match */
.scroll-box::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 10px;
}

.scroll-box {
    height: 150px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-pink) transparent;
}

/* 6. GLITTER: Particles */
.glitter {
    position: fixed;
    pointer-events: none;
    width: 6px;
    height: 6px;
    background: #ffb7c5;
    box-shadow: 0 0 10px #fff, 0 0 5px #ff69b4;
    border-radius: 50%;
    z-index: 9999;
    animation: fadeOut 0.8s linear forwards;
}

@keyframes fadeOut {
    0% { 
        opacity: 1; 
        transform: translate(0, 0) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translate(var(--x), var(--y)) scale(0.1); 
    }
}

/* Custom Neon Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color); /* Matches your deep black background */
}

::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--accent-pink); /* Gives the scrollbar a subtle glow */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--soft-pink); /* Changes color when you hover over it */
}

/* For Firefox */
 {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-pink) var(--bg-color);
}

.grove-footer {
    width: 100%;
    max-width: 1000px;
    margin-top: 60px;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap; /* This makes it responsive! */
    justify-content: space-around;
    border-top: 1px solid var(--dark-purple);
    gap: 20px;
}

.footer-container {
    flex: 1 1 200px; /* Boxes grow and shrink as needed */
    text-align: center;
    color: var(--soft-pink);
}

.footer-container h4 {
    color: var(--accent-pink);
    text-shadow: var(--glow);
    text-transform: lowercase;
    margin-bottom: 15px;
}

.footer-container a {
    display: block;
    color: var(--soft-pink);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-container a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 5px var(--accent-pink);
}