/* Bliss Cruise Landing Page - Updated Button Colors Only */

/* Button Container - Side by Side Layout */
.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Book Now Button - Primary Action - Purple Theme (Matches Sidebar) */
.btn-book-now {
    background: #6b5b95;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    width: 50%;
    box-shadow: 0 2px 4px rgba(107, 91, 149, 0.3);
}

.btn-book-now:hover {
    background: #5a4a83;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 91, 149, 0.4);
    text-decoration: none;
    color: white !important;
}

/* More Info Button - Secondary Action - Purple Theme (Matches Sidebar) */
.btn-more-info {
    background: #6b5b95;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    width: 50%;
    box-shadow: 0 2px 4px rgba(107, 91, 149, 0.3);
}

.btn-more-info:hover {
    background: #5a4a83;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 91, 149, 0.4);
    text-decoration: none;
    color: white !important;
}

/* Additional specificity to override any conflicting styles */
a.btn-book-now,
a.btn-book-now:hover,
a.btn-book-now:focus,
a.btn-book-now:active {
    color: white !important;
    text-decoration: none !important;
}

a.btn-more-info,
a.btn-more-info:hover,
a.btn-more-info:focus,
a.btn-more-info:active {
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Design for Buttons Only */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-book-now,
    .btn-more-info {
        width: 100%;
    }
}
