/*
Theme Name: SeedWeed Theme
Theme URI: http://example.com/seedweed/
Author: Antigravity
Author URI: http://example.com/
Description: A premium, dynamic scroll-animation theme for SeedWeed.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seedweed
*/

.scroll-container {
    height: 500vh; /* Allow enough scrolling space for smooth animation */
    position: relative;
    background-color: #000;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover; /* ensures it covers the full screen */
    z-index: 1;
}

/* Base structural styles from HTML head */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.tonal-layer-1 {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}
.ambient-shadow {
    transition: box-shadow 0.2s ease-in-out;
}
.ambient-shadow:hover {
    box-shadow: 0px 4px 12px rgba(30, 58, 138, 0.05);
}
