@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* ===================================================
   KOSOVA VIKEND — Vibrant Modern UI
   Fonts: Syne (headings) + Outfit (body)
   =================================================== */

:root {
    --c-bg:        #07080f;
    --c-surface:   #0d0f1a;
    --c-card:      #111320;
    --c-card-2:    #161926;

    --c-accent:    #6c63ff;
    --c-accent2:   #ff6b6b;
    --c-accent3:   #43e8a0;
    --c-accent4:   #ffd166;

    --c-accent-glow:  rgba(108, 99, 255, 0.18);
    --c-accent2-glow: rgba(255, 107, 107, 0.15);
    --c-accent3-glow: rgba(67, 232, 160, 0.13);

    --c-text:      #eeeef5;
    --c-text-2:    #9898b0;
    --c-text-3:    #50506a;

    --c-border:    rgba(255,255,255,0.07);
    --c-border-2:  rgba(108, 99, 255, 0.3);

    --r-sm:  10px;
    --r-md:  18px;
    --r-lg:  26px;
    --r-xl:  36px;
    --r-full: 100px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--c-accent); color: #fff; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 99px; }

/* ==================== HEADER ==================== */

header {
    background: rgba(7, 8, 15, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border);
    padding: 0 32px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease;
}

header:hover {
    background: rgba(7, 8, 15, 0.95);
    border-bottom-color: var(--c-border-2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(108,99,255,0.5));
    transition: filter 0.3s ease, transform 0.3s var(--ease-spring);
}

.logo:hover img {
    filter: drop-shadow(0 0 18px rgba(108,99,255,0.9));
    transform: rotate(-6deg) scale(1.08);
}

.logo p {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3px;
}

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

nav ul li { position: relative; }
nav ul li::before { display: none; }

nav ul li a {
    color: var(--c-text-2);
    text-decoration: none;
    padding: 7px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--r-full);
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
    letter-spacing: 0.2px;
}

nav ul li a:hover {
    color: var(--c-text);
    background: rgba(108,99,255,0.12);
}

/* ==================== SEARCH BAR ==================== */

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 0;
}

.search-bar img {
    width: 20px;
    cursor: pointer;
    filter: invert(1) opacity(0.5);
    transition: filter 0.2s ease, transform 0.25s var(--ease-spring);
}

.search-bar img:hover {
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(220deg) brightness(1.2);
    transform: scale(1.15);
}

#searchInput {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    width: 220px;
    border: 1px solid var(--c-border);
    outline: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--r-full);
    color: var(--c-text);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, width 0.4s var(--ease-out);
    display: inline-block;
}

#searchInput:focus {
    border-color: var(--c-accent);
    background: rgba(108,99,255,0.07);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.12);
    width: 260px;
}

#searchInput::placeholder { color: var(--c-text-3); }

/* ==================== MAIN ==================== */

main {
    padding: 40px 20px 80px;
    margin-top: 64px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 40% at 15% 10%, rgba(108,99,255,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 85%, rgba(67,232,160,0.05) 0%, transparent 70%),
        var(--c-bg);
    background-attachment: fixed;
}

/* ==================== NAME / HERO ==================== */

.Name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    -webkit-text-fill-color: unset;
    background-image: none;
    text-shadow: none;
    color: var(--c-accent);
}

.Name h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, var(--c-accent) 40%, var(--c-accent3) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== KOSOVA MAP ==================== */

.kosovaMap svg {
    width: 560px;
    height: 560px;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,0.7));
}

.kosovaMap path {
    fill: rgba(108,99,255,0.08);
    stroke: rgba(108,99,255,0.35);
    stroke-width: 0.7;
    transition: fill 0.25s ease, filter 0.25s ease, stroke 0.25s ease;
}

.kosovaMap path:hover {
    fill: rgba(108,99,255,0.4);
    stroke: var(--c-accent);
    filter: drop-shadow(0 0 12px rgba(108,99,255,0.55));
    cursor: pointer;
}

/* ==================== SEARCH RESULTS ==================== */

.search-results {
    display: none;
    position: fixed;
    top: 76px;
    right: 16px;
    z-index: 1001;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(108,99,255,0.08);
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(13,15,26,0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    color: var(--c-text);
    padding: 10px 14px;
    min-width: 260px;
    animation: dropIn 0.22s var(--ease-out);
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.search-results .restaurant-message {
    padding: 10px 8px 14px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--c-text-3);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 10px;
}

/* ==================== RESTAURANTS ON TOP ==================== */

.restaurantsOnTop {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    margin-bottom: 7px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
}

.restaurantsOnTop:hover {
    background: rgba(108,99,255,0.1);
    border-color: rgba(108,99,255,0.4);
    transform: translateX(-3px);
}

.restaurantsOnTop h3 {
    margin: 0 0 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--c-text);
}

.restaurantsOnTop p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--c-text-2);
}

/* ==================== CITIES ON TOP ==================== */

.citiesOnTop {
    position: fixed;
    top: 76px;
    right: 16px;
    z-index: 1001;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(108,99,255,0.08);
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    background: rgba(13,15,26,0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    color: var(--c-text);
    padding: 10px 14px;
    min-width: 220px;
    animation: dropIn 0.22s var(--ease-out);
}

.citiesOnTop ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.citiesOnTop ul li {
    padding: 9px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    margin-bottom: 6px;
    background: rgba(255,255,255,0.02);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-text-2);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
}

.citiesOnTop ul li:hover,
.cityOnTop:hover {
    background: rgba(108,99,255,0.1);
    color: var(--c-accent);
    border-color: rgba(108,99,255,0.35);
    transform: translateX(-2px);
}

.city-list-container { margin-bottom: 8px; }
#cityListOnTop { list-style: none; padding: 0; margin: 0; }

/* ==================== CITY INFO ==================== */

.city-info {
    display: none;
    margin-bottom: 28px;
    width: 100%;
    text-align: center;
    animation: fadeUp 0.4s var(--ease-out);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.city-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.city-info h2::after {
    content: '';
    display: block;
    height: 3px;
    width: 50%;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
    border-radius: 99px;
    opacity: 0.5;
}

/* ==================== RESTAURANT CARD ==================== */

.restaurant {
    background: var(--c-card);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    padding: 14px;
    margin: 10px auto;
    cursor: pointer;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.25s ease;
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.restaurant::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(108,99,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.restaurant:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(108,99,255,0.1);
    border-color: rgba(108,99,255,0.35);
}

.restaurant:hover::after { opacity: 1; }

/* ==================== LOGO & NAME ==================== */

.logo-name-container {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: background 0.2s ease;
}

.logo-name-container:hover {
    background: rgba(108,99,255,0.06);
}

.logo-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 14px;
    border: 2px solid var(--c-border);
    flex-shrink: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.restaurant:hover .logo-container {
    border-color: var(--c-accent);
    box-shadow: 0 0 12px rgba(108,99,255,0.4);
}

.restaurant-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 0;
    letter-spacing: -0.1px;
}

/* ==================== RESTAURANT DETAILS ==================== */

.restaurant-details {
    display: none;
    margin-top: 14px;
    animation: detailReveal 0.3s var(--ease-out);
}

@keyframes detailReveal {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.restaurant-details.active { display: block; }

/* ==================== SOCIAL LINKS ==================== */

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    transition: border-color 0.2s ease, transform 0.25s var(--ease-spring), box-shadow 0.2s ease;
    object-fit: cover;
}

.social-icon:hover {
    border-color: var(--c-accent);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 14px rgba(108,99,255,0.4);
}

/* ==================== LOCATION & PHONE ==================== */

.location, .phoneNumber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    color: var(--c-text-2);
    padding: 9px 18px;
    border-radius: var(--r-full);
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    margin-right: 8px;
    margin-bottom: 4px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.25s var(--ease-spring);
    font-size: 0.875rem;
    font-weight: 500;
}

.location:hover, .phoneNumber:hover {
    background: rgba(108,99,255,0.12);
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
}

.location-icon, .phone-icon {
    width: 17px;
    height: 17px;
    opacity: 0.7;
    flex-shrink: 0;
}

.location span, .phoneNumber span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: inherit;
}

/* ==================== SLIDER ==================== */

.slider-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 14px auto 6px;
    overflow: hidden;
    border-radius: var(--r-lg);
}

.slide { display: none; width: 100%; }
.slide.active { display: block; }

.slider img {
    width: 100%;
    border-radius: var(--r-lg);
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.slider-container:hover .slider img {
    transform: scale(1.02);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7,8,15,0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.25s var(--ease-spring), color 0.2s ease;
    border-radius: 50%;
    user-select: none;
    border: 1px solid var(--c-border);
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    transform: translateY(-50%) scale(1.1);
}

/* ==================== CONTAINER ==================== */

.container {
    overflow: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    width: 90%;
    margin: 0 auto;
    padding: 0 10px;
    gap: 12px;
}

.active { display: block; }

/* ==================== FOOTER ==================== */

footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    color: var(--c-text-2);
    padding: 32px 0;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    width: 100%;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.footer-logo img {
    width: 30px;
    filter: drop-shadow(0 0 8px rgba(108,99,255,0.4));
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex: 1;
}

.footer-social img {
    width: 22px;
    height: 22px;
    opacity: 0.5;
    filter: invert(1);
    transition: opacity 0.2s ease, transform 0.25s var(--ease-spring), filter 0.2s ease;
}

.footer-social img:hover {
    opacity: 1;
    transform: scale(1.2) rotate(-8deg);
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(220deg);
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 16px;
    margin-top: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.77rem;
    color: var(--c-text-3);
    letter-spacing: 0.3px;
}

/* ==================== HIGHLIGHT ==================== */

.highlight {
    border-color: var(--c-accent3) !important;
    box-shadow: 0 0 0 3px rgba(67,232,160,0.2), 0 24px 64px rgba(0,0,0,0.5) !important;
}

/* ==================== MOBILE ==================== */

@media only screen and (max-width: 768px) {
    header { padding: 0 14px; height: 56px; }
    .logo p { display: none; }
    .logo img { width: 32px; }
    nav ul li a { font-size: 0.82rem; padding: 6px 10px; }
    #searchInput { width: 100px; font-size: 0.82rem; }
    .search-bar img { width: 17px; }
    main { padding: 20px 12px 60px; margin-top: 56px; }
    .kosovaMap svg { width: 300px; height: auto; }
    .restaurant { padding: 12px; margin: 8px auto; border-radius: var(--r-lg); }
    .Name h1 { font-size: 2rem; }
    .citiesOnTop, .search-results {
        right: 8px; left: 8px;
        min-width: unset;
        width: calc(100% - 16px);
    }
    .city-info h2 { font-size: 1.6rem; }
    .prev, .next { width: 30px; height: 30px; font-size: 12px; }
    .footer-container { flex-direction: column; gap: 16px; padding: 0 20px; }
    body { min-height: 100vh; }
}