/* --- PALETA DE LUJO KROWN --- */
body {
    background-color: #1a1a1a;
    color: #f4f4f4;
    font-family: 'Playfair Display', serif;
}

h1, h2, h3, h4, h5 {
    color: #d1b000;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
}

a, a:hover {
    color: #f0c674;
    text-decoration: none;
}

/* --- BOTONES DE ACCIÓN --- */
.btn, .button, .book-btn, input[type="submit"] {
    background-color: #d1b000;
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover, .button:hover, .book-btn:hover, input[type="submit"]:hover {
    background-color: #f4e04d;
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(203, 161, 53, 0.3);
}

/* --- CUADROS DE SERVICIOS --- */
.service-box, .provider-box, .calendar-box {
    background-color: #2b2b2b;
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.4s ease;
}

.service-box:hover, .provider-box:hover, .calendar-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(203, 161, 53, 0.25);
}

/* --- FORMULARIOS --- */
input, select, textarea {
    background-color: #2b2b2b;
    border: 1px solid #555;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
}

input:hover, select:hover, textarea:hover {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(203, 161, 53, 0.2);
}

/* --- ENLACES Y TIPOGRAFÍA --- */
a {
    transition: all 0.2s ease-in-out;
}

a:hover {
    letter-spacing: 0.3px;
    color: #FFD700;
}

/* --- IMÁGENES GALERÍA --- */
img:hover {
    transform: scale(1.02);
    opacity: 0.95;
    transition: all 0.3s ease-in-out;
}
