:root {
    --bs-primary: #198754;
    --bs-primary-rgb: 25, 135, 84;
    --bs-success: #198754;
    --bs-success-rgb: 25, 135, 84;
    --bs-secondary: #6c757d;
    --bs-secondary-rgb: 108, 117, 125;
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1);
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: translateY(-5px);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
} 