/* ============================================
   THEOLOGICUM - Styles personnalis�s
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fbff;
    color: #0f172a;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.65);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #60a5fa;
    transform: scale(1.2);
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.bg-primary {
    background-color: #2563eb;
}

.text-primary {
    color: #2563eb;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -15px rgba(15, 23, 42, 0.2);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
    background: #60a5fa;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

@media print {
    header, footer, .no-print {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
    }
}
