/* Dual Location Styles */

/* Header Side-by-Side Buttons */
.header-order-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-order-buttons .btn-order {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-terrytown {
    background-color: #d32f2f;
    color: #fff;
}

.btn-terrytown:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-neworleans {
    background-color: #28a745;
    color: #fff;
}

.btn-neworleans:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Hero Section Dual Buttons */
.hero-locations {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0 20px 0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-primary {
    min-width: 180px;
    background-color: #d32f2f !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: #b71c1c !important;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background-color: #28a745 !important;
}

.hero-buttons .btn-secondary:hover {
    background-color: #218838 !important;
}

/* Contact Section Locations */
.location-block {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.location-block h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.location-block .contact-item p {
    margin: 10px 0;
    line-height: 1.6;
}

.location-block .btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: #d32f2f !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-block .btn-primary:hover {
    background-color: #b71c1c !important;
    transform: translateY(-2px);
}

.location-block:last-child .btn-primary {
    background-color: #28a745 !important;
}

.location-block:last-child .btn-primary:hover {
    background-color: #218838 !important;
}

/* Popup Dual Buttons */
.popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.popup-buttons .btn-primary {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background-color: #d32f2f !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-buttons .btn-primary:hover {
    background-color: #b71c1c !important;
}

.popup-buttons .btn-secondary {
    background-color: #28a745 !important;
}

.popup-buttons .btn-secondary:hover {
    background-color: #218838 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons .btn-primary {
        width: 100%;
    }
    
    .header-order-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-order-buttons .btn-order {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}
