:root {
    --bg-blueberry: radial-gradient(circle at center, #E0B0FF 0%, #7B2CBF 50%, #4B0082 100%);
    --bg-strawberry: radial-gradient(circle at center, #FFCDD2 0%, #FF5252 50%, #B71C1C 100%);
    --bg-blackberry: radial-gradient(circle at center, #D1C4E9 0%, #4527A0 50%, #2B0F3F 100%);
    --bg-raspberry: radial-gradient(circle at center, #FF7E83 0%, #D32F2F 50%, #9E0007 100%);

    --white: #ffffff;
    --circle-bg: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    height: 100vh;
    overflow: hidden;
    /* Prevent native scroll */
    background: #000;
    /* Default base */
}

/* Background Layers */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: -1;
}

.bg-layer.active {
    opacity: 1;
}

#bg-blueberry {
    background: var(--bg-blueberry);
}

#bg-strawberry {
    background: var(--bg-strawberry);
}

#bg-blackberry {
    background: var(--bg-blackberry);
}

#bg-raspberry {
    background: var(--bg-raspberry);
}

.container {
    padding: 2rem 4rem;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2rem 4rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-links li a.active {
    opacity: 1;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Elements that transition */
.slide-element {
    transition: all 0.8s ease-in-out;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    /* Let clicks pass unless active */
}

.slide-element.active {
    opacity: 1;
    pointer-events: auto;
}

/* 1. Background Text */
.bg-text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.background-text {
    font-family: 'Anton', sans-serif;
    font-size: 18vw;
    text-transform: uppercase;
    letter-spacing: -5px;
    text-shadow: 0 4px 0 #6a0dad, 0 8px 0 #5a0b9e, 0 12px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(50px);
    /* Start slightly lower */
}

.background-text.active {
    transform: translateY(0);
}

/* Flavor specific shadows */
.background-text:nth-child(2) {
    /* Strawberry */
    text-shadow: 0 4px 0 #B71C1C, 0 8px 0 #880E4F, 0 12px 20px rgba(0, 0, 0, 0.4);
}

.background-text:nth-child(3) {
    /* Blackberry */
    text-shadow: 0 4px 0 #2f00ff, 0 8px 0 #1A237E, 0 12px 20px rgba(0, 0, 0, 0.4);
}

.background-text:nth-child(4) {
    /* Raspberry */
    text-shadow: 0 4px 0 #FF7E83, 0 8px 0 #9E0007 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* 2. Cans */
.can-wrapper {
    z-index: 10;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.can-container {
    transform: rotate(-20deg) translateY(100vh);
    /* Start off screen */
}

.can-container.active {
    transform: rotate(-20deg) translateY(0);
    animation: float 6s ease-in-out infinite;
}

.hero-can {
    height: 85vh;
    max-height: 800px;
    filter: drop-shadow(30px 30px 40px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: rotate(-20deg) translateY(0px);
    }

    50% {
        transform: rotate(-20deg) translateY(-25px);
    }

    100% {
        transform: rotate(-20deg) translateY(0px);
    }
}

/* 3. Bottom Area (Fruits + Desc) */
.bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    /* Area for bottom content */
    z-index: 20;
}

/* Fruits */
.fruit-wrapper {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 23vw;
    height: 23vw;
}

.berry-big {
    width: 100%;
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.3));
    transform: scale(0.8) translate(-50px, 50px);
}

.berry-big.active {
    transform: scale(1) translate(0, 0);
}

/* Secondary Top Fruit */
.top-fruit-wrapper {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 12vw;
    height: 12vw;
    z-index: 12;
}

.berry-small {
    width: 100%;
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.3));
    transform: translateY(-30px);
}

.berry-small.active {
    transform: translateY(0);
}

/* Descriptions */
.desc-wrapper {
    position: absolute;
    bottom: 45%;
    left: 25%;
    width: 420px;
}

.text-content {
    text-align: left;
    transform: translateX(50px);
}

.text-content.active {
    transform: translateX(0);
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    /* bottom: 23%; From user edit, but positioning handled by wrapper now. Keeping font size edit. */
}

/* Sidebar */
.social-sidebar {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
}

.fab {
    color: white;
}

/* Circles */
.circles .circle {
    position: absolute;
    background: var(--circle-bg);
    border-radius: 50%;
    z-index: 0;
}

.c1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 20%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.c2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 25%;
}

.c3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 15%;
}

.c4 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 40%;
}