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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    line-height: 1.7;
}

/* NAV */
header {
    background: #0d1b2a;
    border-bottom: 3px solid #c8102e;
}

.header-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px 12px;
    text-align: center;
}

.header-top h1 {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: 1px;
}

.header-top p {
    color: #aac4e0;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

nav {
    background: #12263a;
}

nav ul {
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    display: block;
    color: #d0dce8;
    text-decoration: none;
    padding: 13px 18px;
    font-size: 0.88rem;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
    background: #c8102e;
    color: #ffffff;
}

/* MAIN */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* FLAG */
.flag-banner {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.flag-banner img {
    width: 140px;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.flag-banner .hero {
    margin-bottom: 0;
    flex: 1;
    min-width: 260px;
}

.flag-small {
    display: inline-block;
    width: 28px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
}

/* HERO */
.hero {
    background: #f4f7fa;
    border-left: 4px solid #c8102e;
    padding: 36px 40px;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 1.7rem;
    font-weight: normal;
    margin-bottom: 12px;
    color: #0d1b2a;
}

.hero p {
    font-size: 1rem;
    color: #333;
    max-width: 700px;
}

.countries-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.country-badge {
    background: #0d1b2a;
    color: #fff;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
    border-radius: 2px;
}

/* SECTIONS */
h2.section-title {
    font-size: 1.4rem;
    font-weight: normal;
    color: #0d1b2a;
    border-bottom: 2px solid #c8102e;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    border: 1px solid #dde3ea;
    padding: 24px;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}

.card h3 {
    font-size: 1.05rem;
    color: #0d1b2a;
    margin-bottom: 10px;
    font-weight: bold;
}

.card p {
    font-size: 0.9rem;
    color: #444;
}

.card .card-link {
    display: inline-block;
    margin-top: 14px;
    color: #c8102e;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
}

.card .card-link:hover {
    text-decoration: underline;
}

/* INFO BLOCK */
.info-block {
    background: #f4f7fa;
    border-left: 4px solid #0d1b2a;
    padding: 24px 28px;
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.info-block ul {
    padding-left: 20px;
    color: #333;
    font-size: 0.95rem;
}

.info-block ul li {
    margin-bottom: 6px;
}

/* BLOG */
.blog-post {
    border-bottom: 1px solid #dde3ea;
    padding: 28px 0;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post .post-date {
    font-size: 0.8rem;
    color: #888;
    font-family: Arial, sans-serif;
    margin-bottom: 6px;
}

.blog-post h3 {
    font-size: 1.15rem;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.blog-post p {
    font-size: 0.92rem;
    color: #444;
}

/* CENOVNIK */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 0.92rem;
}

.price-table th {
    background: #0d1b2a;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.price-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dde3ea;
    color: #222;
}

.price-table tr:nth-child(even) td {
    background: #f8f9fb;
}

.price-table tr:hover td {
    background: #eef2f7;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* KONTAKT */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
}

.kontakt-info p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #333;
}

.kontakt-info strong {
    display: block;
    color: #0d1b2a;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.kontakt-info a {
    color: #c8102e;
    text-decoration: none;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

form label {
    display: block;
    font-size: 0.82rem;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    color: #0d1b2a;
    margin-bottom: 4px;
    margin-top: 16px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #bbc5d0;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    color: #111;
    background: #fff;
    outline: none;
    transition: border 0.2s;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #0d1b2a;
}

form textarea {
    height: 120px;
    resize: vertical;
}

form button {
    margin-top: 20px;
    background: #c8102e;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

form button:hover {
    background: #a00d24;
}

/* FOOTER */
footer {
    background: #0d1b2a;
    color: #8aa0b8;
    text-align: center;
    padding: 24px 20px;
    font-size: 0.82rem;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

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

/* BURGER MENU */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #12263a;
    border: none;
    cursor: pointer;
    padding: 14px 20px;
    width: 100%;
    align-items: flex-end;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #d0dce8;
    transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 680px) {
    .header-top h1 {
        font-size: 1.2rem;
    }

    .burger {
        display: flex;
    }

    nav {
        display: none !important;
    }

    nav.open {
        display: block !important;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 13px 20px;
        font-size: 0.9rem;
        border-bottom: 1px solid #1a3349;
    }

    .hero {
        padding: 24px 20px;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .price-table {
        font-size: 0.82rem;
    }
}
