/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#07070c;
color:white;
overflow-x:hidden;
transition:.3s;
}

/* =========================
LOADER
========================= */

#loader{
position:fixed;
inset:0;
background:#07070c;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.hourglass{
width:70px;
height:70px;
border:5px solid orange;
border-radius:50%;
animation:spin 1.5s linear infinite;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

/* =========================
SIDEBAR
========================= */

.sidebar{
position:fixed;
top:20px;
left:20px;
height:calc(100vh - 40px);
width:260px;
background:rgba(10,10,20,.72);
backdrop-filter:blur(24px);
border:1px solid rgba(255,255,255,.06);
border-radius:30px;
padding:18px;
transition:.4s;
z-index:1000;
box-shadow:0 20px 50px rgba(0,0,0,.35);
display:flex;
flex-direction:column;
}

.sidebar.close{
width:95px;
}

/* HEADER */

.sidebar header{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
padding-bottom:18px;
margin-bottom:20px;
border-bottom:1px solid rgba(255,255,255,.05);
}

.image-text{
display:flex;
align-items:center;
gap:15px;
width:100%;
}

.image{
display:flex;
align-items:center;
justify-content:center;
}

.image img{
width:52px;
height:52px;
object-fit:cover;
}

.logo-text{
display:flex;
flex-direction:column;
transition:.3s;
}

.logo-text .name{
font-size:20px;
font-weight:700;
}

.logo-text .profession{
font-size:13px;
opacity:.7;
}

/* CLOSED SIDEBAR */

.sidebar.close .logo-text{
display:none;
}

.sidebar.close header{
justify-content:center;
}

.sidebar.close .image-text{
justify-content:center;
gap:0;
}

.sidebar.close .image{
min-width:auto;
width:auto;
}

.sidebar.close .image img{
margin:auto;
display:block;
}

/* BURGER */

.burger{
font-size:28px;
color:orange;
transition:.3s;
}

.sidebar header:hover .burger{
transform:rotate(90deg);
}

.sidebar.close .burger{
display:none;
}

/* MENU */

.menu-bar{
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

.menu-links{
padding:0;
}

.sidebar li{
list-style:none;
margin-top:12px;
}

.sidebar li a{
height:58px;
display:flex;
align-items:center;
gap:18px;
padding:0 18px;
border-radius:18px;
text-decoration:none;
color:white;
transition:.3s;
position:relative;
overflow:hidden;
}

.sidebar li a::before{
content:'';
position:absolute;
left:0;
top:0;
width:0;
height:100%;
background:linear-gradient(90deg,orange,transparent);
opacity:.15;
transition:.3s;
}

.sidebar li a:hover::before{
width:100%;
}

.sidebar li a:hover{
transform:translateX(5px);
background:rgba(255,255,255,.05);
}

/* ICONS */

.icon{
font-size:24px;
min-width:24px;
display:flex;
justify-content:center;
align-items:center;
}

.sidebar.close li a{
justify-content:center;
padding:0;
}

.sidebar.close .nav-text{
display:none;
}

/* SEARCH */

.search-box{
background:rgba(255,255,255,.05);
border-radius:18px;
overflow:hidden;
}

.search-box input{
background:none;
border:none;
outline:none;
color:white;
font-size:15px;
width:100%;
}

.sidebar.close .search-box{
justify-content:center;
}

.sidebar.close .search-box input{
display:none;
}

/* BOTTOM */

.bottom-content{
margin-top:20px;
}

/* DARK MODE */

.mode{
height:70px;
display:flex;
justify-content:center;
align-items:center;
background:rgba(255,255,255,.04);
border-radius:22px;
}

.toggle-switch{
width:48px;
height:24px;
background:#333;
border-radius:50px;
position:relative;
cursor:pointer;
}

.switch{
position:absolute;
top:3px;
left:4px;
width:18px;
height:18px;
background:white;
border-radius:50%;
transition:.3s;
}

body.light .switch{
transform:translateX(22px);
}

/* =========================
MAIN
========================= */

main{
margin-left:300px;
width:calc(100% - 300px);
transition:.4s;
}

.sidebar.close ~ main{
margin-left:125px;
width:calc(100% - 125px);
}

/* =========================
HERO
========================= */

.hero{
min-height:100vh;
padding:120px 60px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
overflow:hidden;
background:
linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.78)),
url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2000');
background-size:cover;
background-position:center;
}

.hero-content{
max-width:950px;
animation:fadeUp 1s ease;
}

.hero-tag{
display:inline-block;
padding:12px 20px;
border-radius:999px;
background:rgba(255,165,0,.12);
border:1px solid rgba(255,165,0,.3);
color:orange;
margin-bottom:25px;
font-size:14px;
letter-spacing:1px;
}

.hero h1{
font-size:120px;
font-weight:800;
line-height:.9;
letter-spacing:-4px;
margin-bottom:25px;
}

.hero p{
font-size:22px;
max-width:750px;
line-height:1.7;
opacity:.9;
margin:auto;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
padding:18px 38px;
border:none;
border-radius:18px;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.primary-btn{
background:orange;
color:white;
box-shadow:0 10px 30px rgba(255,165,0,.3);
}

.primary-btn:hover{
transform:translateY(-5px);
}

.secondary-btn{
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.08);
color:white;
}

.secondary-btn:hover{
transform:translateY(-5px);
background:rgba(255,255,255,.12);
}

/* =========================
SECTIONS
========================= */

section{
padding:120px 70px;
animation:fadeUp .8s ease;
}

section h2{
font-size:52px;
margin-bottom:40px;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =========================
GLASS
========================= */

.glass{
background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.06);
box-shadow:0 10px 40px rgba(0,0,0,.25);
border-radius:28px;
}

/* =========================
DAILY
========================= */

.daily-card{
display:grid;
grid-template-columns:1fr 1fr;
overflow:hidden;
}

.daily-card img{
width:100%;
height:100%;
object-fit:cover;
}

.daily-card div{
padding:40px;
}

.daily-card span{
display:block;
margin-top:20px;
font-size:34px;
font-weight:700;
color:orange;
}

/* =========================
MENU
========================= */

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.menu-card{
overflow:hidden;
transition:.4s;
}

.menu-card:hover{
transform:translateY(-10px);
}

.menu-card img{
width:100%;
height:280px;
object-fit:cover;
}

.menu-card h3,
.menu-card p{
padding:18px 22px;
}

/* =========================
BOOKING
========================= */

.booking-form{
display:flex;
flex-direction:column;
gap:18px;
padding:30px;
max-width:900px;
margin:auto;
}

.booking-form input,
.booking-form textarea{
padding:16px 20px;
min-height:58px;
border-radius:20px;
}

.booking-form textarea{
height:140px;
resize:none;
}

.booking-form button{
width:260px;
margin:auto;
margin-top:10px;
}



/* =========================
GALLERY
========================= */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:24px;
transition:.4s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.04);
filter:brightness(1.1);
}

/* =========================
REVIEWS
========================= */

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.review-card{
padding:35px;
}

/* =========================
CONTACT
========================= */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.contact-box{
padding:35px;
}

iframe{
width:100%;
height:350px;
border:none;
border-radius:28px;
}

/* =========================
LIGHT MODE
========================= */

body.light{
background:#f3f3f3;
color:#111;
}

body.light .sidebar{
background:rgba(255,255,255,.72);
}

body.light .sidebar li a{
color:#111;
}

body.light .hero{
background:
linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.35)),
url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2000');
background-size:cover;
background-position:center;
}

body.light .hero h1{
color:white;
text-shadow:0 5px 25px rgba(0,0,0,.45);
}

body.light .hero p{
color:white;
text-shadow:0 2px 12px rgba(0,0,0,.4);
}

body.light .hero-tag{
background:rgba(255,165,0,.12);
color:#ff9800;
}

body.light .secondary-btn{
background:rgba(255,255,255,.6);
backdrop-filter:blur(10px);
}

body.light .secondary-btn{
color:#111;
border:1px solid rgba(0,0,0,.08);
}

body.light .glass{
background:rgba(255,255,255,.7);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

.sidebar{
left:10px;
top:10px;
height:calc(100vh - 20px);
}

main{
margin-left:120px;
width:calc(100% - 120px);
}

.hero h1{
font-size:58px;
letter-spacing:-2px;
}

.hero p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.daily-card{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

section{
padding:90px 25px;
}

}

.form-row{
display:flex;
gap:16px;
width:100%;
}

.form-row input:first-child{
flex:1;
}

.form-row input:last-child{
width:140px;
}

.booking-form input,
.booking-form textarea,
.booking-form select{
border:none !important;
outline:none !important;
box-shadow:none !important;
background:rgba(255,255,255,.9);
}

.booking-form input:focus,
.booking-form textarea:focus{
border:none !important;
outline:none !important;
box-shadow:0 0 0 3px rgba(255,165,0,.25) !important;
}

/* number input fix */

input[type=number]{
appearance:textfield;
-moz-appearance:textfield;
}

input[type=number]::-webkit-inner-spin-button{
opacity:1;
}

/* LIGHT MODE FIX */

body.light .booking-form input,
body.light .booking-form textarea{
background:rgba(0, 0, 0, 0.808);
color:#ffffff;
}

.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
text-decoration:none;
padding:18px 36px;
border-radius:18px;
font-size:17px;
font-weight:600;
transition:.3s;
display:inline-flex;
align-items:center;
justify-content:center;
cursor:pointer;
}

.primary-btn{
background:orange;
color:white;
box-shadow:0 10px 30px rgba(255,165,0,.3);
}

.primary-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(255,165,0,.45);
}

.secondary-btn{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
color:white;
}

.secondary-btn:hover{
transform:translateY(-5px);
background:rgba(255,255,255,.14);
}


.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:24px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:28px;
cursor:pointer;
transition:.35s;
}

.gallery-grid img:hover{
transform:scale(1.03);
filter:brightness(1.1);
}

/* LIGHTBOX */

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.92);
display:none;
justify-content:center;
align-items:center;
z-index:99999;
}

.lightbox.active{
display:flex;
}

.lightbox img{
max-width:85%;
max-height:85%;
border-radius:24px;
animation:zoom .3s ease;
}

@keyframes zoom{

from{
transform:scale(.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:48px;
color:white;
cursor:pointer;
z-index:2;
}

.lightbox-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,.08);
border:none;
width:65px;
height:65px;
border-radius:50%;
font-size:34px;
color:white;
cursor:pointer;
backdrop-filter:blur(10px);
transition:.3s;
}

.lightbox-btn:hover{
background:orange;
}

.prev{
left:40px;
}

.next{
right:40px;
}

.reviews{
padding-top:50px;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:28px;
margin-top:40px;
}

.review-card{
padding:35px;
border-radius:30px;
transition:.35s;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.05);
backdrop-filter:blur(20px);
}

.review-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.35);
border-color:rgba(255,165,0,.2);
}

.stars{
display:block;
font-size:24px;
color:orange;
letter-spacing:4px;
margin-bottom:20px;
}

.review-card p{
font-size:17px;
line-height:1.8;
opacity:.92;
margin-bottom:24px;
}

.review-card h3{
font-size:15px;
font-weight:500;
opacity:.65;
}

.about-section{
padding-top:120px;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
height:600px;
object-fit:cover;
border-radius:35px;
}

.section-tag{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,165,0,.12);
border:1px solid rgba(255,165,0,.2);
color:orange;
margin-bottom:24px;
font-size:14px;
}

.about-content h2{
font-size:56px;
line-height:1.1;
margin-bottom:28px;
}

.about-content p{
font-size:18px;
line-height:1.9;
opacity:.85;
margin-bottom:20px;
}

.about-stats{
display:flex;
gap:50px;
margin-top:40px;
flex-wrap:wrap;
}

.about-stats h3{
font-size:42px;
color:orange;
margin-bottom:8px;
}

.about-stats span{
opacity:.7;
font-size:15px;
}

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

.about-image img{
height:350px;
}

.about-content h2{
font-size:40px;
}

}

.contact-section{
padding-top:120px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:35px;
align-items:stretch;
margin-top:40px;
}

.contact-card{
padding:45px;
border-radius:35px;
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-card h3{
font-size:36px;
margin-bottom:16px;
}

.contact-card p{
font-size:17px;
line-height:1.8;
opacity:.82;
margin-bottom:35px;
}

.contact-items{
display:flex;
flex-direction:column;
gap:22px;
}

.contact-item{
display:flex;
align-items:center;
gap:16px;
font-size:17px;
}

.contact-item i{
font-size:24px;
color:orange;
}

.map-box{
overflow:hidden;
border-radius:35px;
min-height:500px;
}

.map-box iframe{
width:100%;
height:100%;
border:none;
filter:grayscale(.1) contrast(1.05);
}


.footer{
padding:30px 60px 30px 140px;
margin-top:100px;
border-top:1px solid rgba(255,255,255,.05);
background:rgba(255,255,255,.02);
}

.footer-content{
max-width:1400px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
font-size:15px;
opacity:.75;
}

.footer-right{
display:flex;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

.footer-right a{
text-decoration:none;
padding:10px 18px;
border-radius:14px;
background:orange;
color:white;
font-weight:600;
transition:.3s;
}

.footer-right a:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(255,165,0,.35);
}

@media(max-width:900px){

.footer{
padding:30px 25px 100px;
}

.footer-content{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

}















/* =========================
LIGHT MODE
========================= */

body.light{
background:#f3f3f3;
color:#111;
}

body.light .sidebar{
background:rgba(255,255,255,.72);
}

body.light .sidebar li a{
color:#111;
}

body.light .hero{
background:
linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.35)),
url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2000');
background-size:cover;
background-position:center;
}

body.light .hero h1{
color:white;
text-shadow:0 5px 25px rgba(0,0,0,.45);
}

body.light .hero p{
color:white;
text-shadow:0 2px 12px rgba(0,0,0,.4);
}

body.light .hero-tag{
background:rgba(255,165,0,.12);
color:#ff9800;
}

body.light .secondary-btn{
background:rgba(255,255,255,.6);
backdrop-filter:blur(10px);
}

body.light .secondary-btn{
color:#111;
border:1px solid rgba(0,0,0,.08);
}

body.light .glass{
background:rgba(255,255,255,.7);
}

body.light .booking-form input,
body.light .booking-form textarea,
body.light .booking-form select {
background:rgba(255,255,255,.95);
color:#111;
}


/* =========================
RESPONSIVE (MOBIL OPTIMALIZÁLÁS)
========================= */

@media(max-width:900px){

/* 1. Sziklaszilárd, mozdíthatatlan Felső Header */
.sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important; /* Kizárja az elcsúszást okozó rést */
    width: 100% !important;
    height: 75px !important; /* Fix magasság görgetés közben is */
    border-radius: 0 0 20px 20px !important; /* Csak alul kerekített mobil léc */
    padding: 0 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important; /* Mindig minden felett marad */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important; /* Logó balra, Témaváltó jobbra */
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.sidebar header {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
}

/* 2. Témaváltó gomb kényszerítése a jobb felső sarokba mobil sávon */
.bottom-content {
    /* JAVÍTÁS: Növeljük a felső margót, hogy a gomb lejjebb kerüljön */
    margin-top: 23px !important; /* 0-ról 15px-re növelve */
    display: flex !important;
    align-items: center !important;
}

/* JAVÍTÁS: Középre igazítás */
.mode {
    height: auto !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important; /* display:flex helyett block */
}

/* JAVÍTÁS: A gomb visszakapja a rögzített asztali szélességet és pozíciót */
.toggle-switch {
    width: 48px !important; /* Rögzített szélesség mobilon is */
    height: 24px !important; /* Rögzített magasság mobilon is */
    border-radius: 50px !important; /* Rögzített kerekítés mobilon is */
    margin: 0 !important; /* Nincs margó, ami eltolná */
    display: block !important; /*display:flex helyett block */
}

/* A kis csúszka kényszerítése a helyére */
.switch {
    top: 3px !important;
    left: 4px !important;
    width: 18px !important;
    height: 18px !important;
}

/* Elrejtjük a mobilon szükségtelen elemeket (menüpontok, burger) */
.menu-bar .menu,
.sidebar .burger,
.search-box {
    display: none !important;
}

.sidebar.close .logo-text,
.sidebar.close .nav-text {
    display: block !important;
}

/* Főoldali tartalom lejjebb tolása, hogy ne csússzon be a fix sáv alá */
main {
    margin-left: 0 !important;
    width: 100% !important;
    padding-top: 75px !important;
}

.sidebar.close ~ main {
    margin-left: 0 !important;
    width: 100% !important;
}

/* 3. Hero szekció korrekciója mobil kijelzőre */
.hero {
    padding: 60px 20px !important;
    min-height: calc(100vh - 75px) !important;
}

.hero h1 {
    font-size: 44px !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
}

.hero p {
    font-size: 17px !important;
}

.hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
}

.primary-btn, .secondary-btn {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* 4. Szekciók igazítása */
section {
    padding: 60px 20px !important;
}

section h2 {
    font-size: 34px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

.daily-card {
    grid-template-columns: 1fr !important;
}

.daily-card div {
    padding: 25px !important;
}

.menu-grid, .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}

/* 5. Galéria mobil elrendezés */
.gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

.gallery-grid img {
    height: 260px !important;
    border-radius: 20px !important;
}

/* 6. Rólunk (About) rész mobilra */
.about-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}

.about-image img {
    height: 300px !important;
    border-radius: 24px !important;
}

.about-content h2 {
    font-size: 34px !important;
}

.about-stats {
    gap: 30px !important;
    justify-content: center !important;
}

/* 7. Kapcsolat szekció: Szöveg felül, Térkép ALATTA */
.contact-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.contact-card {
    width: 100% !important;
    padding: 30px 20px !important;
}

.contact-card h3 {
    font-size: 28px !important;
}

.map-box {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    border-radius: 28px !important;
}

/* 8. Űrlap elemek törésgátlása */
.form-row {
    flex-direction: column !important;
    gap: 15px !important;
}

.form-row input:last-child,
.booking-form button {
    width: 100% !important;
}

/* Lightbox képnézegető mobil finomhangolás */
.lightbox img {
    max-width: 90% !important;
    max-height: 70% !important;
}

.close-lightbox {
    top: 20px !important;
    right: 20px !important;
    font-size: 38px !important;
}

.lightbox-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
}

.prev { left: 10px !important; }
.next { right: 10px !important; }

/* 9. Letisztult, javított Lábléc (Footer) Mobilra */
.footer {
    padding: 30px 20px !important; /* Leszedi a gombot eltoló 140px-es asztali paddingot */
    text-align: center !important;
    margin-top: 50px !important;
}

.footer-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

.footer-right {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
}

.footer-right a {
    display: block !important;
    width: 100% !important; /* Teljes szélességű elegáns gomb */
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
}

} /* Media Query lezárása */



#loader{
    position: fixed;
    inset: 0;
    background: #050816;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hourglass{
    width: 120px;
    animation: rotateGlass 2s linear infinite;
}

@keyframes rotateGlass{

    0%{
        transform: rotate(0deg);
    }

    50%{
        transform: rotate(180deg);
    }

    100%{
        transform: rotate(360deg);
    }

}
