:root {
    --primary: #4e73df;
    --secondary: #1cc88a;
    --accent: #f6c23e;
    --dark: #2c2f33;
    --light: #f8f9fc;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}





/* Reviews styling */
.card .card-title { color: #0b5ed7; font-weight: 600; }
.card .card-subtitle { font-size: 0.9rem; }
.review-collapsed { max-height: 8rem; overflow: hidden; position: relative; }
.review-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 2.2rem; background: linear-gradient(transparent, rgba(255,255,255,0.95)); }
.card .card-link { margin-right: 0.75rem; }
.review-meta { font-size: 0.85rem; color: #6c757d; }
.btn .fas { margin-right: 0.35rem; }


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 4000;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    border: none;
    border-radius: 30px;
}

.btn {
    transition: all 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/* FOOTER */
footer {
    background: linear-gradient(135deg, #1e2125, #2c2f33);
    color: #bbb;
    padding: 60px 0;
    margin-top: 0px;
}

    footer h5 {
        color: white;
    }

    footer a {
        color: #aaa;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--secondary);
        }


