/* Ken Burns animations */
@keyframes kenburnsLeft {
    0%   { transform: scale(1.15) translate(2%, 1%); }
    100% { transform: scale(1.0)  translate(-2%, -1%); }
}

@keyframes kenburnsRight {
    0%   { transform: scale(1.0) translate(-2%, -1%); }
    100% { transform: scale(1.15) translate(2%, 1%); }
}

@keyframes kenburnsZoom {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.18); }
}

.kenburns-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.kenburns-left  { animation-name: kenburnsLeft; }
.kenburns-right { animation-name: kenburnsRight; }
.kenburns-zoom  { animation-name: kenburnsZoom; }

.fw-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 0;
}

.fw-px-4-5{
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}

.fw-py-2-5{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Gradiens overlay — felül sötét, lefelé átlátszó */
.cs1-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 65%);
    z-index: 0;
}

/* Hero cím — Oswald Bold, nagyon nagy, fehér */
.cs1-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(2.5rem, 9.375vw, 11.25rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.25rem;
}

/* Subtitle — Oswald Regular, közepes nagy, fehér */
.cs1-subtitle {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: clamp(1rem, 2.6vw, 3.125rem);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Piros CTA gomb */
.cs1-btn {
    display: inline-block;
    background-color: var(--primary) !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: "Oswald", sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.5625rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
    padding: 10px 50px !important;
    transition: background-color 0.2s;
}
.cs1-btn:hover,
.cs1-btn:focus {
    background-color: var(--secondary) !important;
    color: #fff !important;
    text-decoration: none;
}

/* Navigációs nyilak — fehér keretes négyzet, lekerekített sarkok */
#home.owl-carousel .owl-nav button.owl-prev,
#home.owl-carousel .owl-nav button.owl-next {
    background: transparent !important;
    border: 2px solid #fff !important;
    border-radius: 10px !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.85;
    transition: opacity 0.2s;
}
#home.owl-carousel .owl-nav button.owl-prev:hover,
#home.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1) !important;
}
#home.owl-carousel .owl-nav button.owl-prev::before,
#home.owl-carousel .owl-nav button.owl-next::before {
    color: #fff !important;
    font-size: 1.1rem !important;
}
