.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1520523839897-bd0b52f945a0?q=80&w=2070&auto=format&fit=crop'); /* Placeholder Piano Background */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

/* Top Stats Bar */
.hero-stats-bar {
    display: flex;
    background-color: #d4af37; /* Gold-ish color */
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.stats-count {
    background-color: #d8b868; /* Darker Gold */
    color: white;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 1.2rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    background-color: white;
    flex: 2;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-box input {
    border: none;
    width: 100%;
    padding: 5px;
    outline: none;
    font-size: 1rem;
}

.search-box i {
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
}

.offer-btn {
    background-color: #f0e6d2; /* Light beige */
    color: #333;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.offer-btn:hover {
    background-color: #e6dcc0;
}

/* Slideshow Container */
.slideshow-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.slideshow-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.slideshow-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}

.nav-arrow {
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
}

.nav-arrow:hover {
    color: #333;
}

.slide-item {
    display: flex;
    flex: 1;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.slide-img-placeholder {
    width: 200px;
    height: 150px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.slide-details {
    flex: 1;
    max-width: 400px;
}

.slide-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.slide-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.slide-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.slideshow-footer {
    text-align: right;
    margin-top: 15px;
    font-size: 0.9rem;
}

.slideshow-footer a {
    color: #666;
    text-decoration: none;
}

.slideshow-footer a:hover {
    text-decoration: underline;
}
