/* ============================================
   TasiFix Web - Site Specific Styles
   ============================================ */

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* Selection Color */
::selection {
    background: var(--tf-primary-yellow);
    color: var(--tf-primary-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--tf-bg-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--tf-primary-yellow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tf-primary-yellow-hover);
}

/* App Store Buttons */
.app-store-btn {
    display: inline-block;
    transition: transform var(--tf-transition-fast);
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 50px;
    width: auto;
}

/* Statistics Counter */
.tf-stat {
    text-align: center;
    padding: 24px;
}

.tf-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tf-primary-yellow);
    margin-bottom: 8px;
}

.tf-stat-label {
    font-size: 1rem;
    color: var(--tf-text-secondary);
}

/* Page Header */
.tf-page-header {
    background: linear-gradient(135deg, var(--tf-primary-yellow) 0%, var(--tf-primary-yellow-hover) 100%);
    padding: 60px 0;
    margin-bottom: 0;
}

.tf-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tf-primary-dark);
    margin: 0;
}

.tf-page-header p {
    color: var(--tf-primary-dark);
    opacity: 0.8;
    margin: 12px 0 0;
}

/* Back to Top Button */
.tf-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--tf-primary-yellow);
    color: var(--tf-primary-dark);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 999;
}

.tf-back-to-top:hover {
    background: var(--tf-primary-yellow-hover);
    transform: translateY(-4px);
}

.tf-back-to-top.show {
    display: flex;
}

/* Print Styles */
@media print {
    .tf-navbar,
    .tf-footer,
    .tf-back-to-top {
        display: none !important;
    }

    body {
        background: white;
    }
}
