/* General Styles */
html, body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: 'Rosario', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: 0.5s all;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #323648;
}

p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8em;
    letter-spacing: 1px;
    color: #707579;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Banner (unic) */
.banner {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    height: 100vh;
}

.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.0;
    background: #111;
}

.slider-info {
    position: relative;
    text-align: center;
    width: 70%;
    margin: auto;
    padding-top: 13vw;
}

.w3pvt-logo h2 {
    color: #fff;
    font-size: 3.5em;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
}

/* Telefon - grup */
.phone-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.phone-numbers a {
    font-size: 2em;
    font-weight: bold;
    text-decoration: none;
    margin: 10px;
}

.phone-numbers a:nth-child(1) { color: #f5a623; }
.phone-numbers a:nth-child(2) { color: #f8e71c; }
.phone-numbers a:nth-child(3) { color: #50e3c2; }

.phone-number:hover {
    text-decoration: underline;
    color: #fff;
}

/* Media Queries */
@media all and (max-width: 768px) {
    .slider-info {
        width: 90%;
        padding-top: 25vw;
    }

    .w3pvt-logo h2 {
        font-size: 2.2em;
    }

    .phone-numbers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .phone-numbers a {
        font-size: 1.5em;
    }
}

/* Marquee Section */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #191919;
}

.marquee-text {
    white-space: nowrap;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    animation: marquee 15s linear infinite;
    padding: 10px 0;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.text-day {
    color: #FFEB3B;
    font-family: 'Arial', sans-serif;
    font-size: 1.6em;
    font-weight: bold;
}

.text-zi {
    color: #F44336;
    font-family: 'Courier New', monospace;
    font-size: 1.4em;
    font-weight: bold;
}

nav {
  background-color: red !important;
}


.menu, .menu li, .menu li a {
    background-color: transparent;
}
