/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ================= SOCIAL FLOAT ================= */
.social-float{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:5000;
}

.social-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
    transition:.3s;
}

.social-btn img{width:30px;}
.social-btn:hover{transform:scale(1.15);}

.whatsapp{background:#25D366;}
.viber{background:#7360f2;}
.facebook{background:#1877F2;}
.instagram{background:#E4405F;}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.514);
    z-index: 1000;
}

.logo {
    position: absolute;
    left: 20px;
    height: 55px;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.menu a:hover,
.menu a.active {
    color:#e63946;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 15px;
    cursor: pointer;
    z-index: 3000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

/* ================= HERO ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* VIDEO – MOS BLLoko KLIKIMIN */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* OVERLAY – MOS BLLoko KLIKIMIN */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
    pointer-events: none;
}

/* ================= SLIDES ================= */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

.slide.active {
    opacity: 1;
}

/* ================= SLIDE TEXT (KLIKUES) ================= */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 5; /* SIPËR GJITHÇKA */
    padding: 0 20px;
}

.slide-text h1 {
    font-size: 46px;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s, transform .2s;
    position: relative;
    z-index: 6; /* SIGURON KLIKIMIN */
}

.btn:hover {
    background-color: #d62828;
    transform: translateY(-2px);
}

/* ================= DOTS ================= */
.slider-dots {
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:4;
}

.slider-dots span {
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
    cursor:pointer;
    transition: background 0.3s;
}

.slider-dots span.active {
    background:#e63946;
}

/* ================= FOOTER ================= */
/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer ul {
    list-style: none;
}

.footer li,
.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #e63946;
}

.social-icons a {
    display: inline-block;
    margin-right: 5px;
     margin-bottom: 7px;
    padding: 6px 12px;
    border: 1px solid white;
    border-radius: 5px;
}

.social-icons a:hover {
    background: #e63946;
    border-color: #e63946;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 13px;
}

.footer-contact .btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: #e63946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.footer-contact .btn-map:hover {
    background: grey;
}

.map-icon {
    width: 20px;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 2000;
    }

    .menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

 .slide-text h1 {
        line-height: 1.25;
        text-align: center;
    }

    /* AUTO GOMA në NJË RRESHT vetëm MOBILE */
    .slide-text h1 {
 
        font-size: 28px;
    }

    .slide-text p {
        font-size: 15px;
    }
}
/* SLIDE MOS TA BLLKOJ KLIKIMIN */
.slide {
    pointer-events: none;
}

/* VETËM TEKSTI & BUTONI TË JENË KLIKUES */
.slide-text,
.slide-text a,
.btn {
    pointer-events: auto;
}