/* Hero Full-Screen Styles */
/* Custom CSS vars for girl theme */


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: black;
}

#hero-carousel {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding-top: 4rem; /* Account for sticky nav height */
}

.hero-slide {
    position: absolute;
    inset: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: kenBurns 20s infinite linear;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes kenBurns {
    0%, 100% { transform: scale(1.05) translateZ(0); }
    50% { transform: scale(1.12) translateZ(0); }
}

.hero-slide.active {
    opacity: 1;
    animation-play-state: running;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,105,180,0.4), rgba(255,182,193,0.3), rgba(230,230,250,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 2rem 1.5rem;
}

.hero-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-indicator span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-indicator span.active,
.hero-indicator span:hover {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255,105,180,0.8);
}

/* Text and button in hero */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f3f4f6;
    margin-bottom: 25px;
}

.hero-btn {
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.btn-primary {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem !important; line-height: 1.1; }
    .hero-content p { font-size: 1.1rem !important; }
}
