:root {
    --primary-color: #800000;
    /* Maroon */
    --primary-hover: #5c0000;
    --secondary-color: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    color: #4a0000 !important;
    /* Darker Maroon for logo */
}

.nav-link {
    color: #6c757d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 0.2rem !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

.lang-switch {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

/* Buttons Core */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Text Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #ffffff;
    margin-top: auto;
}

main {
    flex: 1;
}

/* Cards Hover Effect */
.card-dynamic {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-dynamic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Gradient Background Header */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1493976040373-ba140939a3f3?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: overlay;
    z-index: 0;
}

.hero>.container {
    position: relative;
    z-index: 1;
}
