/**
 * Home Page Styles
 */

/* Hero Section */

.hero-section {
    padding: var(--spacing-xl) 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 43px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-text);
    font-weight: var(--font-weight-normal);
}

.hero-title {
    font-family: var(--h1-font-family);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--h1-line-height);
    letter-spacing: var(--h1-letter-spacing);
    color: var(--color-text);
    text-align: center;
}

/* Hero Slider */
.hero-slider {
    flex: 1;
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}


/* Default slide state (used as fallback if JS is disabled) */
.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ensure Slick structures fill the hero slider height */
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide {
    height: 100%;
}

/* Slider Dots (Slick) */
.slider-dots {
    margin-top: var(--spacing-md);
}

.slider-dots ul.slick-dots {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.slider-dots ul.slick-dots li {
    margin: 0;
}

.slider-dots ul.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #6C1630;
    background: transparent;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots ul.slick-dots li.slick-active button,
.slider-dots ul.slick-dots li button:hover {
    background: #6C1630;
}

.slick-dots{
    position: static !important;
}

/* Why Artists Choose Section */
.why-artists-section {
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.why-artists-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.why-artists-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.why-artists-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-artists-icon {
    color: #6C1630;
    font-size: 14px;
    line-height: 1;
}

.why-artists-text {
    font-size: var(--font-size-body);
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Products slider header on home – align title + currency switcher */
.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    position: relative;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-body);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--spacing-md);
    }
    
    .slider-container {
        height: 400px;
    }
    
    .why-artists-grid {
        gap: var(--spacing-sm) var(--spacing-lg);
    }
    
    .why-artists-title {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: var(--spacing-md) 0;
    }
    
    .slider-container {
        height: 300px;
    }
}
