/* Arna Foundation - Custom Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar-brand {
    font-size: 1.3rem;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

footer h5 {
    color: #ffffff;
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.65) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #e74c6f !important;
}

footer .bi {
    color: rgba(255, 255, 255, 0.75);
}

footer a:hover .bi {
    color: #e74c6f;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

footer .text-center {
    color: rgba(255, 255, 255, 0.45) !important;
}

/* Language switcher */
.dropdown-item.active {
    background-color: #dc3545;
}

/* Direction cards icon */
.card .bi {
    line-height: 1;
}

/* Content pages */
.news-content p,
.activity-content p {
    margin-bottom: 1rem;
}

/* Pagination */
.page-link {
    color: #dc3545;
}

.page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}
