body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #f3e8ff 100%);
}

.site-header .navbar-brand {
    letter-spacing: 0.02em;
}

.article-card .card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card .card-title a:hover {
    color: var(--bs-primary);
}

.article-content img {
    max-width: 100%;
    height: auto;
}

:root {
    --brand-green: #006747;
    --brand-light-green: #008A5D;
    --brand-yellow: #FFC107;
}

body {
    color: #333;
}

.btn-brand {
    background-color: var(--brand-yellow);
    color: #333;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-brand:hover {
    background-color: #e0b000;
    color: #333;
}

.section-title {
    color: var(--brand-green);
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--brand-yellow);
    margin: 10px auto 0;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 103, 71, 0.85), rgba(0, 138, 93, 0.85)), url('../img/heroimage.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--brand-green);
}

.custom-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}
