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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #00358E;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigacija */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-mobile-only {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions .btn-primary,
.nav-actions .lang-btn {
    min-width: 132px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.lang-switcher-desktop {
    position: relative;
}

.lang-switcher-mobile {
    display: none;
}

.lang-btn {
    background: #c6362e;
    color: #fff;
    border: 1px solid #c6362e;
    padding: 10px 20px 10px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    position: relative;
}

.lang-btn::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lang-btn:hover {
    background: #a82a24;
    border-color: #a82a24;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    list-style: none;
    min-width: 140px;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li {
    padding: 10px 18px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown li:hover {
    background: #d42020;
    color: #fff;
}

.btn-primary {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #e6e6e6;
}

.btn-blue {
    background: #00358E;
    color: #fff;
}

.btn-blue:hover {
    background: #002a70;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Sekcije */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.spacer {
    height: 80px;
}

/* MIS sekcija */
.mis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mis-card {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.mis-image {
    height: 300px;
    overflow: hidden;
}

.mis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mis-card:hover .mis-image img {
    transform: scale(1.05);
}

.mis-content {
    padding: 32px;
}

.mis-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.mis-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.btn-link {
    color: #d42020;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.btn-link:hover {
    opacity: 0.7;
}

/* Things to do */
.ttd-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ttd-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s;
}

.ttd-card:hover {
    transform: scale(1.03);
}

.ttd-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ttd-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Destinacije */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: scale(1.02);
}

.dest-card.featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.dest-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dest-info p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Instagram */
.instagram-section {
    background: #f8f8f8;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.insta-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insta-card:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

/* Map section */
.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Guide section */
.guide-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.guide-content {
    flex: 1;
    padding: 40px;
}

.guide-badge {
    display: inline-block;
    background: #c6362e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.guide-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.guide-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-features {
    list-style: none;
    margin-bottom: 24px;
}

.guide-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #333;
}

.guide-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.guide-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #00358E;
}

.guide-price-note {
    font-size: 0.8rem;
    color: #888;
}

.guide-image {
    flex: 0 0 280px;
    height: 100%;
    min-height: 320px;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .guide-card {
        flex-direction: column-reverse;
    }
    .guide-image {
        flex: none;
        width: 100%;
        min-height: 200px;
        max-height: 240px;
    }
    .guide-content {
        padding: 24px;
    }
    .guide-title {
        font-size: 1.3rem;
    }
}

/* AdSense */
.ad-container {
    max-width: 728px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
    overflow: hidden;
    min-height: 90px;
}

.ad-container-wide {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
    overflow: hidden;
}

/* Custom Ads Rotation */
.custom-ads-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    min-height: 140px;
}

.custom-ad-card {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 140px;
    aspect-ratio: auto;
}

.custom-ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.custom-ad-content {
    width: 100%;
}

.custom-ad-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.custom-ad-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 12px;
}

.custom-ad-btn {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    transition: background 0.2s;
}

.custom-ad-card:hover .custom-ad-btn {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .ad-container {
        padding: 16px 0;
    }
    .ad-container-wide {
        padding: 16px 0;
    }
    .custom-ads-wrap {
        padding: 24px 16px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 64px 0 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.2s;
}

.social-links a:hover {
    background: #d42020;
}

.footer-qr {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-qr img {
    border-radius: 4px;
    background: #fff;
    padding: 4px;
}

.footer-qr span {
    font-size: 11px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-qr {
        align-items: center;
    }
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .mis-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ttd-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-card.featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-mobile-only {
        display: block;
    }
    .nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #1a1a1a;
        border-radius: 4px;
        padding: 12px 16px;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
        min-height: 44px;
        box-sizing: border-box;
    }
    .nav-cta.btn-blue {
        background: #00358E;
        color: #fff;
    }
    .lang-switcher-desktop {
        display: none !important;
    }
    .lang-switcher-mobile {
        display: block !important;
        padding: 12px 0 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 8px;
    }
    .lang-switcher-mobile .lang-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px 12px 36px;
        background: #c6362e;
        border-color: #c6362e;
        font-size: 14px;
        font-weight: 600;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .lang-switcher-mobile .lang-dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        border-radius: 4px;
        margin-top: 4px;
    }
    .btn-primary {
        display: none;
    }
    .mis-grid {
        grid-template-columns: 1fr;
    }
    .ttd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 48px 0;
    }
    .spacer {
        height: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
}

/* GEO styles */
.geo-section {
    background: #f8f6f2;
    padding: 80px 0;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.geo-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    padding: 32px 28px;
    transition: box-shadow 0.3s;
}

.geo-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.geo-card .citation-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: inline-block;
    background: #f0e8d8;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.geo-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.geo-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 768px) {
    .geo-grid {
        grid-template-columns: 1fr;
    }
    .geo-section {
        padding: 48px 0;
    }
}
