
.bg-material-mix {
    background: linear-gradient(-45deg, #735632, #4a3620, #1a1a1a, #735632);
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.6); }
/* Custom Typography */
.serif { font-family: 'Playfair Display', serif; }
body { font-family: 'Inter', sans-serif; }

/* Location Cards Grid Styling */
.location-item {
    background: rgba(255,255,255,0.05); backdrop-blur: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    transition: all 0.3s ease;
    cursor: default;
}

.location-item:hover {
    background: white;
    color: #735632;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(115, 86, 50, 0.3);
}

/* Modern Form Inputs */
.form-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 0.9rem;
}

.form-input:focus {
    border-color: white;
}

/* Mobile Menu Classes */
.menu-open {
    transform: translateX(0) !important;
}

/* Service Card Hover */
.service-card:hover {
    transform: translateY(-10px);
    border-color: white;
}
/* Star Rating Styles */
.star-radio:checked ~ label svg { color: #eab308; fill: #eab308; }
.star-wrapper:hover ~ label svg, .star-wrapper:hover svg { color: #eab308; fill: #eab308; }
