/* 027 */
/* RESPONSIVE DESIGN ------------------------------------------------------------*/

/* DESKTOP STILI - širina večja od 907px */
@media (min-width: 901px) {
    nav {
        flex-wrap: nowrap;
    }

    .logo-section {
        order: 1;
    }

    .nav-main {
        order: 2;
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
    }

    .language-flags {
        order: 3;
        margin-left: auto;
    }

    /* Prikaži spustni meni ob hoverju na desktopu */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        animation: fadeIn 0.3s ease;
    }
}

/* MOBILNI STILI - širina manjša od 900px*/
@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        align-items: center;
    }

    /* Prva vrstica: logo + naslov + zastave */
    .logo-section {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .language-flags {
        order: 3;
        flex-shrink: 0;
        margin-left: 0;
    }

    /* Druga vrstica: meni */
    .nav-main {
        order: 4;
        flex: 1 0 100%;
        margin-top: 0.5rem;
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 35px;
    }

    footer {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    /* Mobilne naprave - spremeni obnašanje */
    .dropdown.active .dropdown-menu {
        display: block !important;
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        background: transparent;
        animation: slideDown 0.3s ease;
        margin-top: 5px;
        border: none;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 15px 8px 25px;
        background: rgba(255, 255, 255, 0.05);
        margin: 2px 0;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* TABLETI IN MANJŠI ZASLONI (768px - 480px) */
@media (max-width: 768px) {

    .text-overlay,
    .contact-overlay {
        width: 95%;
        max-height: 80vh;
        padding: 1.5rem;
        margin-top: 50px;
    }

    .description-text,
    .about-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .text-overlay h2,
    .contact-overlay h2 {
        font-size: 1.5rem;
    }
}

/* MOBILNI TELEFONI (480px in manj) */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        gap: 0.3rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .language-flags .language-flag {
        width: 25px;
        height: 14px;
    }

    .slideshow-arrow {
        display: none;
    }

    .slideshow-dots {
        bottom: 10px;
    }

    .text-overlay,
    .contact-overlay {
        padding: 1rem;
        max-height: 85vh;
        margin-top: 60px;
    }

    .description-text,
    .about-text {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .about-text ul {
        padding-left: 1.5rem;
    }

    .contact-label {
        display: block;
        margin-bottom: 0.3rem;
    }

    footer {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

/* ZELO OZKI ZASLONI (360px in manj) */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1rem;
        max-width: 120px;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }

    .language-flags .language-flag {
        width: 22px;
        height: 12px;
    }

    footer {
        font-size: 0.7rem;
    }
}

/* KOMPAKTNEJŠA VERZIJA */
.compact-overlay .description-text {
    line-height: 1.5;
    font-size: 0.95rem;
}

.compact-overlay .about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.compact-overlay .about-text li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.compact-overlay .contact-item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
}