/* =============================================
   System Button Styles
   ============================================= */

/* Primary action button (teal gradient) */
.btn-view-details {
    background: linear-gradient(135deg, #007B8A 0%, #005F6B 100%);
    color: white;
    border: none;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 138, 0.35);
    color: white;
}

/* Book / wide CTA button */
.btn-book {
    background: linear-gradient(135deg, #007B8A 0%, #005F6B 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 138, 0.4);
    color: white;
}

/* Navbar CTA button */
.btn-cta {
    background: linear-gradient(135deg, #007B8A 0%, #005F6B 100%);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 138, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 138, 0.4);
    color: white !important;
}

/* Search / filter button */
.btn-search {
    background: linear-gradient(135deg, #007B8A 0%, #005F6B 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 138, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 138, 0.4);
    color: white;
}

/* Outline secondary button */
.btn-system-outline {
    background: transparent;
    color: #007B8A;
    border: 2px solid #007B8A;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.btn-system-outline:hover {
    background: #007B8A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 138, 0.25);
}
