body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
}

/* HEADER */
.site-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #ed8c05;
    color: #fff;
}

/*.site-logo {
    height: 120px;
    margin-right: 15px;
	background: #ed8c05;
}*/

.logo-wrapper {
    position: relative;
    background-color: #dce0dc; /* solid base color */
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    overflow: hidden;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.3); /* semi-transparent overlay */
    backdrop-filter: blur(5px);
    border-radius: 10px;
    pointer-events: none;
}


.site-logo {
    position: relative; /* above pseudo-element */
    height: 120px;
    width: auto;
    display: block;
}


.header-text h1 {
    margin: 0;
    font-size: 22px;
}

/* NAVBAR */
.navbar {
    background: #047504;
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

/* SLIDER */
/*.slider-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: none;
}

.slider-image.active {
    display: block;
}*/

/* SLIDER CONTAINER */
.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* SLIDER IMAGE */
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    display: block;
}

/* GLASSY OVERLAY */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* semi-transparent */
    backdrop-filter: blur(10px); /* Frosted glass blur */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    pointer-events: none; /* Allow clicking through */
}


/* CONTENT */
section {
    max-width: 900px;
    background: #fff;
    margin: 20px auto;
    padding: 25px;
    border-radius: 5px;
}

h2 {
    color: #047504;
}

p {
    text-align: justify;
}

section p {
    text-align: justify;
    line-height: 1.7;
}


/* FOOTER */
/*footer {
    background: #047504;
    color: white;
    text-align: center;
    padding: 12px;
}*/

footer {
    background: #047504;
    color: white;
    text-align: center;
    padding: 12px;
}

footer a {
    color: white;          /* keeps link color same as text */
    text-decoration: none; /* remove underline */
}

footer a:hover {
    text-decoration: underline; /* optional hover effect */
}


/* MOBILE */
@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .site-logo {
        margin-bottom: 10px;
    }
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background-color: #c8cfc8;
    color: #047504;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#scrollTopBtn:hover {
    background-color: #dce0dc;
}

