/* ========================================
   COMMON COMPONENTS - WELLNESS COUCH
   Theme Color: #3fa5e7
   Use these classes across the entire website
   ======================================== */

/* ========================================
   BUTTONS
   ======================================== */

/* Primary Button - Main CTA */
.btn-primary-custom {
    background: #3fa5e7;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
   
    box-shadow: 0 2px 6px rgba(63, 165, 231, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: #2d8fcc;
    box-shadow: 0 4px 12px rgba(63, 165, 231, 0.35);
    color: white;
    transform: translateY(-1px);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-primary-custom i {
    margin-right: 8px;
}

/* Secondary Button - Alternative actions */
.btn-secondary-custom {
    background: white;
    color: #3fa5e7;
    border: 2px solid #3fa5e7;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: #3fa5e7;
    color: white;
    transform: translateY(-1px);
}

.btn-secondary-custom i {
    margin-right: 8px;
}

/* Button Sizes */
.btn-sm {
    padding: 10px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Outline Button */
.btn-outline-custom {
    background: transparent;
    color: #3fa5e7;
    border: 1px solid #3fa5e7;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: #3fa5e7;
    color: white;
}

/* ========================================
   BADGES & TAGS
   ======================================== */

.badge-primary {
    background: #e7f5fd;
    color: #1a5a7a;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #3fa5e7;
    display: inline-block;
}

.badge-secondary {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    display: inline-block;
}

/* ========================================
   CARDS
   ======================================== */

.card-custom {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3fa5e7;
    margin-bottom: 20px;
}

.card-custom-hover {
    transition: all 0.3s ease;
}

.card-custom-hover:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   ALERTS
   ======================================== */

.alert-info-custom {
    background: #e7f5fd;
    color: #1a5a7a;
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 4px solid #3fa5e7;
    margin-bottom: 20px;
}

.alert-success-custom {
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
}

.alert-warning-custom {
    background: #fff3cd;
    color: #856404;
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-bottom: 20px;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */

.form-control-custom {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #3fa5e7;
    box-shadow: 0 0 0 3px rgba(63, 165, 231, 0.1);
    outline: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-primary-custom {
    color: #3fa5e7;
}

.bg-primary-custom {
    background-color: #3fa5e7;
}

.border-primary-custom {
    border-color: #3fa5e7;
}

/* Section Spacing */
.section-padding {
    padding: 60px 0;
}

.section-padding-sm {
    padding: 40px 0;
}

.section-padding-lg {
    padding: 80px 0;
}