.theme-item h5{margin-bottom:6px;font-weight:600}
.theme-item p{margin:0;color:#4a4a4a}
.theme-item i{color:#D96C3D;margin-right:6px}
.theme-palette{display:flex;gap:18px;align-items:center;margin-top:8px}
.palette-item{display:flex;align-items:center;gap:8px}
.swatch{width:40px;height:40px;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,0.12);border:1px solid rgba(0,0,0,0.06);display:inline-block}
.swatch.orange{background:#D96C3D}
.swatch.beige{background:#E8D6B0}
.swatch.brown{background:#6B3F2F}
.palette-label{font-size:0.95rem;color:#333}
@media (max-width:480px){.theme-palette{flex-direction:column;align-items:flex-start;gap:10px}}

/* ===== Slider Banner Animation ===== */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideshow 15s infinite;
}

.slider-slide:nth-child(1) {
    animation-delay: 0s;
}

.slider-slide:nth-child(2) {
    animation-delay: 5s;
}

.slider-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideshow {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    48% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.header.slider-container .container {
    position: relative;
    z-index: 2;
}

/* Ensure consistent image dimensions in the whenwhere carousel */
.whenwhere-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.whenwhere-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .whenwhere-img {
        height: 200px;
    }
}

/* Enhanced Radio Button Styling */
.form-check-input {
    width: 22px;
    height: 22px;
    margin-top: 0;
    cursor: pointer;
    border: 2px solid #D96C3D;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    background-color: #fff;
    flex-shrink: 0;
}

.form-check-input:hover {
    border-color: #c25a2f;
    box-shadow: 0 0 8px rgba(217, 108, 61, 0.2);
}

.form-check-input:checked {
    background: linear-gradient(135deg, #D96C3D 0%, #c25a2f 100%);
    border-color: #c25a2f;
    box-shadow: 0 2px 6px rgba(217, 108, 61, 0.3);
}

.form-check-input:checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: #333;
    transition: color 0.2s ease;
}

.form-check-input:checked + .form-check-label {
    color: #D96C3D;
    font-weight: 600;
}

/* Form Inputs Border Radius */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #D96C3D;
    box-shadow: 0 0 0 0.2rem rgba(217, 108, 61, 0.15);
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn.buttono {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn.buttono:hover {
    box-shadow: 0 4px 12px rgba(217, 108, 61, 0.25);
}

/* Select Options Styling */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D96C3D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

select.form-control:hover {
    border-color: #D96C3D;
}

select.form-control:focus {
    border-color: #D96C3D;
    box-shadow: 0 0 0 0.2rem rgba(217, 108, 61, 0.15);
}

select.form-control option {
    padding: 8px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
}

select.form-control option:checked {
    background: linear-gradient(#D96C3D, #D96C3D);
    background-color: #D96C3D;
    color: white;
}

.highlight-link {
    color: #E8D6B0;
    font-weight: bold;
    text-decoration: none; /* Removes the standard underline */
    position: relative;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* Creating a custom underline effect */
.highlight-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #E8D6B0;
    transition: width 0.3s;
}

/* What happens when you hover */
.highlight-link:hover {
    color: #f5e6cc; /* Lightens slightly on hover */
    text-shadow: 0px 0px 8px rgba(232, 214, 176, 0.4); /* Subtle glow */
}

.highlight-link:hover::after {
    width: 100%; /* Underline slides in */
}