/* =====================
   GLOBALNE POSTAVKE
   ===================== */
   body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dcefdc; /* svijetla prirodna zelena */
    color: #2e3d2f;
    line-height: 1.6;
}

a {
    color: #406e57;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2d4a3b;
}

h1, h2, h3 {
    font-weight: 700;
    margin-top: 0;
    color: #1e2d1f;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3em;
}

p {
    margin-bottom: 1em;
}

/* =====================
   HEADER & NAVIGACIJA
   ===================== */
.header-container {
    display: flex;
    align-items: center;
    background-color: #2d4a3b;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.header-logo {
    height: 80px;
    margin-right: 20px;
}

.header-title {
    font-size: 1.4rem;
    color: #fff;
}

nav {
    background-color: #406e57;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: bold;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #2e5745;
}

/* =====================
   HERO BANNER
   ===================== */
.hero-banner {
    background: linear-gradient(to right, #b4d2c2, #e1f0e6);
    text-align: center;
    padding: 40px 20px;
}

.hero-banner h1,
.hero-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-banner p {
    font-size: 1.2rem;
    color: #3b4f3d;
}

/* =====================
   INDEX - FORMA
   ===================== */
main form {
    max-width: 600px;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #d5e0d2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

main form h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e2d1f;
}

form .form-group {
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
}

form textarea {
    min-height: 100px;
}

form .checkbox-group {
    display: flex;
    align-items: center;
}

form .checkbox-group input {
    margin-right: 8px;
}

form button[type="submit"] {
    background-color: #406e57;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button[type="submit"]:hover {
    background-color: #2e5745;
}

/* =====================
   SEKCIJA FOTOGALERIJA
   ===================== */
.gallery-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d5e0d2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-caption {
    padding: 10px;
    font-size: 0.95rem;
    color: #4c5c4a;
}

/* =====================
   SEKCIJA DESTINACIJE
   ===================== */
.destinations-hero {
    padding: 40px 20px;
    text-align: center;
}

.destination-categories {
    text-align: center;
    margin-bottom: 20px;
}

.category-btn {
    background-color: #fff;
    border: 1px solid #406e57;
    color: #406e57;
    padding: 10px 15px;
    margin: 0 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background-color: #406e57;
    color: #fff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px 40px;
}

.destination-card {
    background-color: #fff;
    border: 1px solid #d5e0d2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 15px;
}

.feature-tag {
    display: inline-block;
    background-color: #e1f0e6;
    color: #2e5745;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 5px 5px 0 0;
    font-size: 0.85rem;
}

/* =====================
   SEKCIJA AKTIVNOSTI
   ===================== */
.activities-container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-section {
    margin-bottom: 40px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.activity-card {
    background-color: #fff;
    border: 1px solid #d5e0d2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.activity-details p {
    margin: 5px 0;
    color: #4c5c4a;
    font-size: 0.95rem;
}

/* =====================
   SEKCIJA KORISNE INFORMACIJE
   ===================== */
.info-container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 40px;
}

.info-card, .price-card, .rule-item, .contact-card, .transport-card {
    background-color: #fff;
    border: 1px solid #d5e0d2;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.pricing-table, .rules-list, .contact-cards, .transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.map-container iframe {
    width: 100%;
    border: 0;
    border-radius: 8px;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background-color: #2d4a3b;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #d8f0e1;
}

.footer-section p, .footer-section a {
    font-size: 0.95rem;
    color: #e0eee4;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4f705f;
    padding-top: 10px;
    font-size: 0.85rem;
    color: #c8e4d3;
}

.social-icons a {
    margin-right: 10px;
    color: #e0eee4;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #aee0c2;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-menu {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
