/* Osnovni stilovi */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    line-height: 1.6;
    color: #333;
    background-image: url(../img/pozadina.png);
    background-size: cover;
}

/* Header stilovi */
header {
    background-color: #2c5530;
    color: white;
    padding: 16px;
    text-align: center;
}

h1 {
    font-size: 40px;   
    font-weight: bold;
    font-variant: small-caps;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigacija */
.navigation {
    list-style-type: none;
    padding: 0;
    background-color: #1a331c;
    border-radius: 5px;
    overflow: hidden;
}

.navigation li {
    float: left;
}

.navigation a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
}

.navigation a:hover {
    background-color: #3a7d3d;
}

.navigation a:active {
    background-color: #4caf50;
}

.navigation a:visited {
    color: #e0e0e0;
}

.navigation a:focus {
    outline: 2px solid #4caf50;
}

.navigation a.active {
    background-color: #4caf50;
}

/* Main sadržaj */
main {
    max-width: 1200px;
    margin: 32px auto;   
    padding: 0 16px;     
}

/* Sekcije */
section {
    background-color: white;
    padding: 32px;     
    margin-bottom: 32px;
    border-radius: 10px;
}

/* Liste */
.leaf-list {
    list-style-image: url(img/lista.png);
    background-color: #e8f5e9;
    padding: 16px 32px;
    border-radius: 5px;
}

.leaf-list li {
    margin: 8px 0;
    text-indent: 16px;
}

.mission-list {
    list-style-type: square;
    background-color: #f1f8e9;
    padding: 16px 32px;
}

.mission-list li:first-child {
    color: #2c5530;
    font-weight: bold;
}

.mission-list li:last-child {
    font-style: italic;
}

/* Tablica */
.otpad-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.otpad-table th, .otpad-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.otpad-table th {
    background-color: #2c5530;
    color: white;
}

.otpad-table tr:nth-child(even) {
    background-color: #f1f8e9;
}

.otpad-table tr:hover {
    background-color: #e8f5e9;
}

/* Box model */
.mission-box {
    width: 80%;
    padding: 20px;
    border: 2px solid #2c5530;
    margin: 16px auto;
    background-color: #f1f8e9;
    border-radius: 5px;
}

/* Galerija */

.gallery-image {
    width: auto;
    height: 200px;
    border: 2px black solid;
    border-radius: 5px;
    margin: 7px;
    
}

/* Kontakt forma */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #4caf50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

button:hover {
    background-color: #3a7d3d;
}

/* Footer */
footer {
    background-color: #2c5530;
    color: white;
    text-align: center;
    padding: 16px;
    position: fixed;
    bottom: 0;
    width: 100%;
}



