/* Hero Carousel - Full Screen */
.landing-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.carousel-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile: center the subject */
@media (max-width: 768px) {
    .carousel-background {
        background-position: center center;
    }
}

/* Desktop: wide 4K composition */
@media (min-width: 769px) {
    .carousel-background {
        background-position: center center;
        background-size: cover;
    }
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 40px;
    z-index: 2;
}

@media (max-width: 768px) {
    .carousel-overlay {
        padding: 0 24px 100px; /* Account for sticky player */
    }
}

.carousel-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 8px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    max-width: 900px;
}

@media (max-width: 1024px) {
    .carousel-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .carousel-title {
        font-size: 32px;
        margin: 0 0 6px;
    }
}

.carousel-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.4;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .carousel-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.carousel-cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff3366, #ff6b9d);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4);
}

.carousel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 51, 102, 0.6);
}

@media (max-width: 768px) {
    .carousel-cta {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

@media (max-width: 768px) {
    .carousel-dots {
        bottom: 16px;
        gap: 8px;
    }
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #ff3366;
    width: 24px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-nav-prev {
    left: 24px;
}

.carousel-nav-next {
    right: 24px;
}

@media (max-width: 768px) {
    .carousel-nav-prev {
        left: 12px;
    }
    .carousel-nav-next {
        right: 12px;
    }
}
