#hero h1 {
    color: #ffffff; /* Replace with your desired color, e.g., #d53e4a */
}

/* Curtain Slider Styles */
.curtain-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust based on your design */
    margin: 0 auto;
}

.curtain-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2; /* Maintains image aspect ratio */
    overflow: hidden;
    background: var(--background-secondary, #ffffff);
    border: 2px solid var(--border-color, #ff4655);
}

.curtain-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.curtain-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container */
    display: block;
}

.curtain-slider {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--border-color, #ff4655);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    z-index: 10;
}

/* Style the slider thumb */
.curtain-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color, #d53e4a);
    border-radius: 50%;
    border: 2px solid var(--background-secondary, #ffffff);
    transition: background 0.3s ease;
}

.curtain-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent-color, #d53e4a);
    border-radius: 50%;
    border: 2px solid var(--background-secondary, #ffffff);
    transition: background 0.3s ease;
}

.curtain-slider:hover::-webkit-slider-thumb,
.curtain-slider:hover::-moz-range-thumb {
    background: var(--background-primary, #ff4655);
}