/* Standalone Hero Section - Won't interfere with existing content */
.standalone-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #ffe6f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px; /* Space below hero */
}

.standalone-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.honeymilkspinners.com/wp-content/uploads/2025/05/HoneymilkAi-003.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease-out;
}

.standalone-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.standalone-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 105, 180, 0.8),
        0 0 40px rgba(255, 105, 180, 0.6),
        0 0 60px rgba(255, 105, 180, 0.4),
        0 0 80px rgba(255, 105, 180, 0.2);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    animation: standaloneTitleFloat 3s ease-in-out infinite;
}

/* 3D Text Effect */
.standalone-hero-title::before {
    content: 'Honeymilk Spinners';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-10px);
}

.standalone-hero-title::after {
    content: 'Honeymilk Spinners';
    position: absolute;
    top: 4px;
    left: 4px;
    color: rgba(255, 105, 180, 0.1);
    z-index: -2;
    transform: translateZ(-20px);
}

/* Floating Emojis */
.standalone-floating-emoji {
    position: absolute;
    font-size: clamp(2.5rem, 5vw, 4rem);
    z-index: 2;
    animation: standaloneFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
    transform-style: preserve-3d;
}

.standalone-emoji-cherry-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.standalone-emoji-cherry-2 {
    top: 30%;
    left: 25%;
    animation-delay: 1.5s;
    animation-duration: 6s;
}

.standalone-emoji-cherry-3 {
    top: 20%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 4.5s;
}

.standalone-emoji-rainbow {
    top: 35%;
    right: 30%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.standalone-emoji-cherry-fruit {
    top: 25%;
    left: 45%;
    animation-delay: 0.5s;
    animation-duration: 5.5s;
}

.standalone-emoji-cherry-1::before {
    content: '🌸';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-5px);
}

.standalone-emoji-cherry-2::before {
    content: '🌸';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-5px);
}

.standalone-emoji-cherry-3::before {
    content: '🌸';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-5px);
}

.standalone-emoji-rainbow::before {
    content: '🌈';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-5px);
}

.standalone-emoji-cherry-fruit::before {
    content: '🍒';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 105, 180, 0.3);
    z-index: -1;
    transform: translateZ(-5px);
}

/* Animations */
@keyframes standaloneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) translateZ(0);
    }
    25% {
        transform: translateY(-15px) rotate(2deg) translateZ(5px);
    }
    50% {
        transform: translateY(-25px) rotate(0deg) translateZ(10px);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg) translateZ(5px);
    }
}

@keyframes standaloneTitleFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

/* Add a subtle overlay for better text readability */
.standalone-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 105, 180, 0.1) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .standalone-hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .standalone-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .standalone-floating-emoji {
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

@media (max-width: 480px) {
    .standalone-hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .standalone-hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .standalone-floating-emoji {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }
} 