/* ===== v8/assets/css/main.css ===== */

/* ===== DEV BADGE ===== */
.dev-badge {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    z-index: 9999;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

.dev-badge strong {
    color: #ffd700;
    font-weight: 700;
}

.dev-badge a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.dev-badge a:hover {
    color: #ffd700;
}

body {
    padding-top: 28px;
    margin: 0;
}

/* ===== HEADER ===== */
header {
    background: #1a1a2e;
    padding: 12px 20px;
    position: sticky;
    top: 28px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.version-badge {
    background: #ff6b35;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 8px;
    font-weight: 700;
}

/* ===== NAVIGATION ===== */
#nav-menu {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

nav ul li {
    display: flex;
    align-items: center;
}

/* ===== BUTONAT E NAVIGIMIT ===== */
nav ul li a {
    color: #ffffff;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    background: transparent;
    border: none;
}

nav ul li a:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

nav ul li a.active {
    background: #dc3545;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

nav ul li a.active:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

/* ===== BUTONI LIVE ===== */
.live-btn {
    background: #ff0000;
    padding: 6px 18px;
    border-radius: 20px;
    animation: pulse 2s infinite;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.live-btn.active {
    background: #dc3545;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
}

.live-btn.active:hover {
    background: #c82333;
}

.live-dot {
    color: #ffffff;
    animation: blink 1s infinite;
    display: inline-block;
    font-size: 10px;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 40px;
    line-height: 1.5;
}

.lang-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.lang-btn.active:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    padding: 0 2px;
}

/* ===== HAMBURGER ===== */
.hamburger {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    display: none;
}

.hamburger:hover {
    color: #dc3545;
    transform: scale(1.1);
}

/* ===== ANIMACIONET ===== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    nav ul li a {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 11px;
        min-width: 35px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: stretch;
    }
    
    #nav-menu.active {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
        white-space: normal;
        width: 100%;
    }
    
    nav ul li a:hover {
        transform: none;
    }
    
    .live-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 12px 20px;
    }
    
    .lang-switcher {
        margin-left: auto;
    }
    
    .lang-btn {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 45px;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .version-badge {
        font-size: 7px;
        padding: 1px 6px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 35px;
    }
    
    .hamburger {
        font-size: 22px;
        padding: 3px 8px;
    }
    
    .lang-divider {
        font-size: 12px;
    }
    
    .dev-badge {
        font-size: 10px;
        padding: 4px;
    }
}

/* ===== BUTONAT E PAKETAVE ===== */
.btn-package {
    display: inline-block;
    background: #1a237e;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-package:hover {
    background: #dc3545;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

/* ===== BUTONI I COVERAGE ===== */
.btn-coverage {
    display: inline-block;
    background: transparent;
    color: #1a237e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #1a237e;
    cursor: pointer;
}

.btn-coverage:hover {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* ===== BUTONAT E SLIDERIT ===== */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.slider-nav button:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

/* ===== BUTONI I SUBMIT ===== */
.btn-submit,
button[type="submit"] {
    background: #1a237e;
    color: #ffffff;
    padding: 12px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover,
button[type="submit"]:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

/* ===== BUTONI PRIMAR ===== */
.btn-primary {
    display: inline-block;
    background: #1a237e;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

/* ===== BUTONI SEKONDAR ===== */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a237e;
    padding: 10px 28px;
    border: 2px solid #1a237e;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    transform: translateY(-2px);
}

/* ===== BUTONI I MBYLLJES ===== */
.btn-close {
    background: transparent;
    color: #333;
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}