/* Event Booking Manager - Frontend Styles */
/* Color Scheme inspired by Don Franco Tafari website */
/* Burgundy: #5C1D1D, #7D2828, #8B3333 */
/* Gold: #C9A961, #D4AF37, #B8995F */
/* Dark Background: #1a0f0f, #2a1515 */
/* Accent Green: #2d6e2d, Red: #c92424 */

/* Contact Info Styles */
.ebm-contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a0f0f 0%, #2a1515 100%);
}

.ebm-contact-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.ebm-contact-info {
    background: rgba(92, 29, 29, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    padding: 40px;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.ebm-info-section {
    margin-bottom: 30px;
}

.ebm-info-section h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ebm-info-section p {
    color: #e8dcc4;
    line-height: 1.8;
}

.ebm-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ebm-contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(125, 40, 40, 0.6) 0%, rgba(92, 29, 29, 0.6) 100%);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.ebm-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(201, 169, 97, 0.5);
}

.ebm-contact-icon {
    margin-right: 15px;
    color: #D4AF37;
}

.ebm-contact-content h4 {
    margin: 0 0 5px 0;
    color: #D4AF37;
    font-weight: 600;
}

.ebm-contact-content a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ebm-contact-content a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.ebm-business-hours {
    background: rgba(45, 110, 45, 0.3);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    color: #e8dcc4;
}

.ebm-business-hours h4 {
    margin-top: 0;
    color: #D4AF37;
    font-weight: 600;
}

.ebm-business-hours p {
    color: #e8dcc4;
    margin: 5px 0;
}

/* Booking Form Styles */
.ebm-booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a0f0f 0%, #2a1515 100%);
}

.ebm-form-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.ebm-form {
    background: rgba(92, 29, 29, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    padding: 40px;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.ebm-form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.ebm-form-section:last-of-type {
    border-bottom: none;
}

.ebm-form-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ebm-form-row {
    margin-bottom: 20px;
}

.ebm-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 0.5px;
}

.ebm-form-row .required {
    color: #c92424;
}

.ebm-form-row input[type="text"],
.ebm-form-row input[type="email"],
.ebm-form-row input[type="tel"],
.ebm-form-row input[type="date"],
.ebm-form-row input[type="number"],
.ebm-form-row select,
.ebm-form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(26, 15, 15, 0.6);
    color: #e8dcc4;
}

.ebm-form-row input:focus,
.ebm-form-row select:focus,
.ebm-form-row textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(26, 15, 15, 0.8);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.ebm-form-row select option {
    background: #2a1515;
    color: #e8dcc4;
}

.ebm-form-row input::placeholder,
.ebm-form-row textarea::placeholder {
    color: rgba(232, 220, 196, 0.5);
}

.ebm-form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ebm-submit-btn,
.ebm-download-template-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ebm-submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8995F 100%);
    color: #1a0f0f;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.ebm-submit-btn:hover {
    background: linear-gradient(135deg, #E6C355 0%, #C9A961 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.ebm-submit-btn:disabled {
    background: rgba(92, 29, 29, 0.5);
    cursor: not-allowed;
    transform: none;
    color: rgba(232, 220, 196, 0.5);
}

.ebm-download-template-btn {
    background: linear-gradient(135deg, rgba(125, 40, 40, 0.8) 0%, rgba(92, 29, 29, 0.8) 100%);
    color: #D4AF37;
    border: 2px solid rgba(201, 169, 97, 0.5);
}

.ebm-download-template-btn:hover {
    background: linear-gradient(135deg, rgba(139, 51, 51, 0.9) 0%, rgba(125, 40, 40, 0.9) 100%);
    border-color: #D4AF37;
}

.ebm-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.ebm-form-message.success {
    background: rgba(45, 110, 45, 0.3);
    border: 2px solid rgba(45, 110, 45, 0.8);
    color: #c8f0c8;
    display: block;
}

.ebm-form-message.error {
    background: rgba(201, 36, 36, 0.3);
    border: 2px solid rgba(201, 36, 36, 0.8);
    color: #f8c8c8;
    display: block;
}

.ebm-pdf-download-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8995F 100%);
    color: #1a0f0f;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ebm-pdf-download-link:hover {
    background: linear-gradient(135deg, #E6C355 0%, #C9A961 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Loading Spinner */
.ebm-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: #D4AF37;
    animation: ebm-spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes ebm-spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ebm-form {
        padding: 25px;
    }
    
    .ebm-form-actions {
        flex-direction: column;
    }
    
    .ebm-submit-btn,
    .ebm-download-template-btn {
        width: 100%;
        min-width: auto;
    }
    
    .ebm-contact-details {
        grid-template-columns: 1fr;
    }
}
