.use-font {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #90EE90;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    background-color: #0A3622;
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.top-bar h1 {
    font-size: 1.5rem;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10pxS;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

.content-box {
    background-color: #ffffff;
    margin: 2rem auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    flex-grow: 1;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: transparent;
    color: #0A3622;
    margin-top: auto;
    flex-shrink: 0;
}

footer a {
    color: #0A3622;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #000000;
}

.link_change {
    color: #000000;
    text-decoration: none;
}

.link_change:hover {
    text-decoration: underline;
    color: #0A3622;
}

a.home_button {
    color: #ffffff;
    text-decoration: none;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.gallery-item img {
    max-width: 300px; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.nav-menu {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%; 
    right: 10px; 
    background-color: #0A3622; 
    min-width: 160px;
    border-radius: 0 0 8px 8px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); 
    overflow: hidden;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.nav-menu a:last-child {
    border-bottom: none; 
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
}

.nav-menu.active {
    display: flex;
}
