/* ===== Rovinj badge shape (template correct) ===== */

@media (min-width: 992px){
  .banner-two__title__sub{
    width: 238px;
    height: 85px;
    padding: 20px 0;

    background-image: url("../images/shapes/title-bg-shape.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    border-radius: 0;
  }

  .banner-two__title__sub > span{
    position: relative;
    top: 8px;
    display: block;
    text-align: center;
  }
}


/* ===== Mobile-only Contact visibility ===== */

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

@media (max-width: 991px) {
    .mobile-only-contact {
        display: block;
    }
}


/* ===== Header Language Switch ===== */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 25px;
    font-size: 14px;
    font-weight: 500;
}

.lang-switch .lang {
    color: #ffffff;
    opacity: 0.7;
    text-decoration: none;
    transition: 0.3s ease;
}

.lang-switch .lang:hover {
    opacity: 1;
}

.lang-switch .lang.active {
    opacity: 1;
    font-weight: 600;
}

.lang-switch .divider {
    color: rgba(255,255,255,0.4);
}


/* ===== Footer Social Area ===== */

.main-footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Default footer social link (WhatsApp keeps circle) */
.main-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* WhatsApp icon */
.footer-icon i {
    font-size: 20px;
    color: #25D366;
}

/* ===== REMOVE circle background from flags ===== */

.footer-flag {
    background: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

/* Flag image styling */
.footer-flag img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.75;
}

/* Soft glow on hover */
.footer-flag img:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* Active language white ring */
.footer-flag.active img {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}
/* ========================================= */
/* MOBILE LANGUAGE MOVE FIX */
/* ========================================= */

/* Sakrij jezike iz headera na mobitelu */
@media (max-width: 1199px){
    .lang-switch {
        display: none !important;
    }
}

/* Sakrij mobile jezike na desktopu */
@media (min-width: 1200px){
    .mobile-only-lang {
        display: none !important;
    }
}

/* Mobile language styling */
.mobile-lang-switch {
    text-align: center;
    margin-top: 20px;
}

.mobile-lang-switch .lang {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 8px;
}

.mobile-lang-switch .lang.active {
    font-weight: 600;
}