/* ============================================
   FLAIR NEST - BUTTON STYLES (Balanced Medium Size)
   ============================================ */

/* Main Orange Button */
.btn-main {
    background: #ffc0cb !important;
    border: none !important;
    border-radius: 6px !important; /* smoother edges */
    color: black !important;
    font-weight: 500;
    padding: 9px 20px; /* balanced medium size */
    font-size: 1rem; /* readable text */
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.2px;
    text-transform: none;
}

/* Hover */
.btn-main:hover {
    background: #ffc0cb !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.25);
}

/* Active */
.btn-main:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.15);
}

.btn-main:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

/* Disabled */
.btn-main:disabled {
    background: #ffc0cb !important;
    color: #ffffff !important;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.9;
}

/* Processing State (with spinner) */
.btn-main:disabled .spinner-border-sm {
    border-color: #ffffff;
    border-right-color: transparent;
}

/* Size Variants */
.btn-main.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-main.btn-sm {
    padding: 7px 16px;
    font-size: 0.85rem;
}

/* Full Width */
.btn-main.w-100,
.btn-main.btn-block {
    width: 100%;
}

/* Outline Variant (Secondary Button) */
.btn-outline-secondary,
.btn-outline-danger {
    background: transparent !important;
    border: 2px solid #ffc0cb !important;
    border-radius: 6px !important;
    color: #ffc0cb !important;
    font-weight: 500;
    padding: 9px 20px;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.btn-outline-secondary:hover,
.btn-outline-danger:hover {
    background: #ffc0cb !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.25);
}

/* Link Buttons */
.btn-link {
    background: transparent !important;
    border: none !important;
    color: #ffc0cb !important;
    padding: 8px 12px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: #ffc0cb !important;
    text-decoration: underline;
}

/* Small Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-main {
        padding: 9px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .btn-main {
        padding: 9px 18px;
        font-size: 0.9rem;
    }
}

/* ============================================
   NAVBAR BRAND LOGO & NAME
   ============================================ */
.navbar-brand {
    color: #ffc0cb !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #ffc0cb !important;
    transform: translateY(-2px);
}

.navbar-brand i {
    color: #ffc0cb !important;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover i {
    color: #ffc0cb !important;
}
