/* css/contact-specific.css */
/* Estilos específicos para contact.html - MALOMAR MUSIC */

/* ===== ESTRUCTURA DE 2 COLUMNAS PARA INFO CONTACTO ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-column {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.contact-column h3 {
    color: #b8860b;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* ===== LISTA DE INFORMACIÓN ===== */
.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.contact-details li strong {
    color: #555;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-details li span {
    color: #666;
}

.contact-details li:before {
    content: "•";
    color: #b8860b;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
}

/* ===== MEJORA DE CONTRASTE GENERAL ===== */
#info-contacto .contact-column {
    background: #ffffff;
    border: 1px solid #ddd;
}

#info-contacto .contact-details li {
    color: #444;
}

#info-contacto .contact-details li strong {
    color: #333;
}

#info-contacto .contact-details li span {
    color: #555;
}

/* ===== MAPA VISUAL DE UBICACIONES ===== */
.locations-visual {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.location-point {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
    min-width: 200px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.location-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 0.5rem;
}

.location-name {
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.location-point p {
    color: #666;
    margin: 0;
}

/* ===== MEJORAS AL FORMULARIO ===== */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b8860b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* ===== CORRECCIÓN CONTRASTE FORMULARIO ===== */
#formulario .container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

#formulario .section-title-center {
    color: #333;
    margin-bottom: 1rem;
}

#formulario .section-title-center + p {
    color: #555;
    margin-bottom: 2rem;
}

.form-group label {
    color: #444 !important;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: #ffffff;
    color: #333;
    border: 2px solid #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b8860b;
    background: #fffef7;
}

.form-submit .btn-primary {
    background: #b8860b;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-submit .btn-primary:hover {
    background: #9c7009;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-visual {
        flex-direction: column;
    }
    
    .location-point {
        width: 100%;
        max-width: 300px;
    }
    
    #formulario .container {
        padding: 1.5rem;
    }
}