/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
    position: relative;
    scroll-behavior:smooth;
}

body{
    width:100%;
    overflow-x:hidden;
    position: relative;
    font-family:"Poppins",sans-serif;
    background:#0f172a;
    color:#fff;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img{
    max-width:100%;
    display:block;
    user-select:none;
    -webkit-user-drag:none;
    transition: transform .4s ease;
}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{
    width:min(92%,1320px);
    margin:auto;
    padding-inline:12px;
}
/* =========================
NAVBAR
========================= */

:root{

--bg:#0f172a;

--bg2:#111827;

--card:#1e293b;

--gold:#D4AF37;

--text:#fff;

--text2:#cbd5e1;

--radius:22px;

--shadow:0 20px 50px rgba(0,0,0,.35);

}


.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(15,23,42,.55);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;
    box-shadow:
        0 5px 25px rgba(0,0,0,.18);

}

.navbar.scrolled{

    background:#0b1220;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}

.logo{
    transition: .35s ease;
}

.logo:hover{
    transform: scale(1.05);
}

nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-links a{

    color:#fff;
    font-weight:500;
    position:relative;
    transition:
        color .3s ease,
        transform .3s ease;

}

.nav-links a:hover{

    color:var(--gold);
    transform:translateY(-2px);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.reserve-btn{

    padding:12px 28px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#f7d774);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.reserve-btn:hover{

    transform:translateY(-4px) scale(1.03);

    box-shadow:
        0 15px 35px rgba(212,175,55,.35);

}

.reserve-btn::after{
    display:none;
}

.menu-btn{

    display:none;

    width:34px;

    cursor:pointer;

}

.menu-btn span{

    display:block;

    width:100%;

    height:3px;

    background:#fff;

    margin:7px 0;

    transition:.35s;

}

.menu-btn.open span:nth-child(1){

    transform:rotate(45deg) translate(7px,7px);

}

.menu-btn.open span:nth-child(2){

    opacity:0;

}

.menu-btn.open span:nth-child(3){

    transform:rotate(-45deg) translate(7px,-7px);

}

/* TABLET */

@media(max-width:1100px){

  .menu-btn{
    display:block;
    z-index:10001;
  }

  .reserve-btn{
    display:inline-flex; 
  }

  nav{
    flex:0;
  }

  .nav-container{
    justify-content:space-between;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:min(82vw,340px);
    height:100vh;
    background:#0b1220;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:35px;
    transition:.4s;
  }

  .nav-links.active{
    right:0;
  }
}

/* MOBILE */

@media(max-width:768px){

.logo{

font-size:24px;

}

.nav-container{

min-height:72px;

}

}


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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

    transition:background-image 1.2s ease-in-out;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(15,23,42,.96),
        rgba(15,23,42,.15),
        rgba(0,0,0,.45)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(92%,1200px);

    margin:auto;

    text-align:center;

    padding-top:120px;

}

.hero h1{

    font-size:clamp(38px,6vw,72px);
    line-height:1.1;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.1;
    text-shadow:
        0 10px 30px rgba(0,0,0,.45);

}

.hero p{

    font-size:clamp(16px,2vw,22px);

    color:#e2e8f0;

    max-width:720px;

    margin:auto;
    letter-spacing:.5px;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn {

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#f5d76e);

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(212,175,55,.35);

}

.btn.outline{

    background:transparent;

    border:2px solid #d4af37;

    color:#d4af37;

}

.btn.outline:hover{

    background:#d4af37;

    color:#fff;

}

.hero-glass{

    margin-top:55px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.glass-item{

    padding:25px;

    border-radius:18px;

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;
    min-height:170px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);

}

.glass-item:hover{

    border-color:#D4AF37;

  transform:
        translateY(-8px)
        scale(1.02);

}

.glass-item h3{

    color:#D4AF37;

    margin-bottom:12px;

}

.glass-item p{

    color:#e2e8f0;

}

.hero-stats{

    margin-top:60px;

    display:flex;

    justify-content:center;

    gap:50px;
    row-gap:30px;

    flex-wrap:wrap;

}

.hero-stats h3{

    color:#D4AF37;

    font-size:32px;

}

.hero-stats p{

    color:#cbd5e1;

    margin-top:8px;

}

/* HERO RESPONSIVE */

@media(max-width: 1100px){

.hero h1{

font-size:56px;

}

.hero-glass{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero{

padding:120px 0 70px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-stats{

gap:30px;

}

}


@media(max-width:768px){

  .hero-glass{
    grid-template-columns:1fr;
  }

  .room-container,
  .service-container,
  .gallery-grid,
  .review-container,
  .contact-wrapper{
    grid-template-columns:1fr;
  }
}

@media (max-width:480px){

.hero{
    min-height:auto;
}

.hero-content{
    padding-top:90px;
}

.hero-glass{
    gap:16px;
}

.glass-item{
    padding:20px;
}

.btn{
    width:100%;
    max-width:320px;
}

.hero-stats{
    flex-direction:column;
    align-items:center;
    gap:22px;
}

}

/* =========================
RESERVATION
========================= */

.reservation{

    padding:110px 0;

    background:#111827;

}

.reservation h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;
    color:#fff;

    letter-spacing:1px;

}

.reservation>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:50px;

}

#reservationForm{

    width:min(92%,760px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;
    background:#1b2435;

    padding:40px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    border:1px solid rgba(255,255,255,.08);

}

#reservationForm input,
#reservationForm select{

    width:100%;

    padding:18px;

    outline:none;

    border-radius:14px;

    background:#253248;

    border:1px solid transparent;

    color:#fff;

    font-size:16px;

    transition:.35s;

}

#reservationForm input::placeholder{

    color:#94a3b8;

}


#reservationForm input:focus,
#reservationForm select:focus{

    border:1px solid var(--gold);

    transform:translateY(-2px);

    box-shadow:
    0 0 18px rgba(212,175,55,.30);

}

#reservationForm button{

    grid-column:1/-1;

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#D4AF37,#FFD86A);

    color:#111;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;
    letter-spacing:.5px;


}

#reservationForm button:hover{

    box-shadow:0 18px 35px rgba(212,175,55,.35);
        transform:
        translateY(-4px)
        scale(1.02);

}

#msg{

    margin-top:25px;

    text-align:center;

    font-weight:600;

    color:#D4AF37;
    min-height:24px;

}

/* Flatpickr */

.flatpickr-calendar{

    border:none;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.flatpickr-day.selected{

    background:#D4AF37;

    border-color:#D4AF37;

}

.flatpickr-day:hover{

    background:#ffe28c;

    color:#111;

}

.flatpickr-months{

    background:#0f172a;

}

.flatpickr-current-month{

    color:#fff;

}

.flatpickr-weekday{

    color:#D4AF37;

}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg{

    fill:#D4AF37;

}

/* RESPONSIVE */

@media(max-width:768px){

#reservationForm{

grid-template-columns:1fr;
padding:25px;

}

.reservation h2{

font-size:34px;

}

}



/* =========================
ROOMS
========================= */

.rooms{

    padding:110px 0;

    background:#0f172a;

}

.rooms h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;

}

.rooms>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:60px;

}

.room-container{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.room-card{

    background:#1e293b;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.28);
    position:relative;

}

.room-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

}

.room-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:
        transform .6s ease;

}

.room-card:hover img{

    transform:scale(1.08);

}

.room-card h3{

    font-size:24px;

    margin:22px;

    color:#fff;

    font-weight:600;

}


.room-card p{

    margin:0 22px;

    color:#cbd5e1;

    line-height:1.8;

}

.room-card span{

    display:block;

    margin:24px 22px;

    color:var(--gold);

    font-size:28px;

    font-weight:700;

}
.room-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin:25px 22px 25px;

    padding:14px 28px;

    border-radius:40px;

    background:#D4AF37;

    color:#111;

    font-weight:600;

    transition:.35s;

}

.room-card a:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(212,175,55,.35);

}

.room-card .btn {
    transition: .35s;
}

.room-card:hover .btn {
    letter-spacing: 1px;
}


.room-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin:0 22px 25px;

    padding:14px 30px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--gold),
        #FFD86A
    );

    color:#111;

    font-weight:700;

    transition:.35s;

}


.room-btn:hover{

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(212,175,55,.35);

}


.room-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

}

/* RESPONSIVE */

@media(max-width:1100px){

.room-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.rooms h2{

font-size:34px;

}

.room-container{

grid-template-columns:1fr;

}

.room-card img{

height:230px;

}

@media(max-width:768px){

.room-card{

margin:auto;

max-width:420px;

}

}


}




/* =========================
SERVICES
========================= */

.services{

    padding:110px 0;

    background:#111827;

}

.services h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;

}

.services>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:60px;

}

.service-container{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.service{

    background:#1e293b;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.service:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.service h3{

    font-size:28px;

    color:#D4AF37;

    margin-bottom:18px;

}

.service p{

    color:#cbd5e1;

    line-height:1.8;

}

/* =========================
GALLERY
========================= */

.gallery{

    padding:110px 0;

    background:#0f172a;

}

.gallery h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;

}

.gallery>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:60px;

}

.gallery-grid{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 45px rgba(0,0,0,.4);

}

/* RESPONSIVE */

@media(max-width:1100px){

.service-container{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services h2,
.gallery h2{

font-size:34px;

}

.service-container,
.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:240px;

}

}


/* =========================
REVIEWS
========================= */

.reviews{

    padding:110px 0;

    background:#111827;

}

.reviews h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;

}

.reviews>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:60px;

}

.review-container{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#1e293b;

    padding:35px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.review-card h3{

    color:#D4AF37;

    font-size:26px;

    margin-bottom:20px;

}

.review-card p{

    color:#e2e8f0;

    line-height:1.9;

    margin-bottom:22px;

}

.review-card h4{

    color:#fff;

    font-weight:600;

}

/* =========================
CONTACT
========================= */

.contact{

    padding:110px 0;

    background:#0f172a;

}

.contact h2{

    text-align:center;

    font-size:42px;

    margin-bottom:12px;

}

.contact>p{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:60px;

}

.contact-wrapper{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

#contactForm{

    display:flex;

    flex-direction:column;

    gap:20px;

}

#contactForm input,
#contactForm textarea{

    padding:18px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#1e293b;

    color:#fff;

    transition:.3s;

}

#contactForm input:focus,
#contactForm textarea:focus{

    border:1px solid #D4AF37;

    box-shadow:0 0 15px rgba(212,175,55,.25);

}

#contactForm button{

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#D4AF37,#FFD86A);

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

#contactForm button:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(212,175,55,.35);

}

#contactForm input,
#contactForm textarea,
#contactForm button {

    width: 50%;
    margin: 0 auto;

}

.contact-info{

    background:#1e293b;

    padding:35px;

    border-radius:22px;

}

.contact-info h3{

    color:#D4AF37;

    font-size:28px;

    margin-bottom:25px;

}

.contact-info p{

    margin-bottom:15px;

    color:#e2e8f0;

}

.map{

    margin-top:25px;

}

.map iframe{

    width:100%;

    height:300px;

    border:none;

    border-radius:18px;

}


.contact-info h3, p, .map, .map iframe {
    
    width: 50%;
    margin: 0 auto;
}

/* RESPONSIVE */

@media(max-width:1100px){

.review-container{

grid-template-columns:1fr;

}

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.reviews h2,
.contact h2{

font-size:34px;

}

}



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

.footer{

    background:#08111f;

    padding:70px 20px 35px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-content{

    width:min(92%,1300px);

    margin:auto;

    text-align:center;

}

.footer h2{

    font-size:34px;

    color:#D4AF37;

    margin-bottom:15px;

}

.footer p{

    color:#cbd5e1;

}

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;

    margin:35px 0;

}

.footer-links a{

    color:#fff;

    transition:.3s;

}

.footer-links a:hover{

    color:#D4AF37;

}

.copy{

    margin-top:25px;

    color:#94a3b8;

    font-size:15px;

}

/* =========================
BACK TO TOP
========================= */

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#D4AF37,#FFD86A);

    color:#111;

    font-size:22px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    transition:.35s;

    z-index:999;

}

#topBtn:hover{

    transform:translateY(-6px) scale(1.08);

}

/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111f;

}

::-webkit-scrollbar-thumb{

    background:#D4AF37;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FFD86A;

}

/* =========================
FINAL RESPONSIVE
========================= */

@media(max-width: 1100px){

.footer-links{

gap:18px;

}

}

@media(max-width:768px){

.footer{

padding:60px 20px 30px;

}

.footer h2{

font-size:28px;

}

.footer-links{

flex-direction:column;

gap:15px;

}

#topBtn{

width:48px;

height:48px;

font-size:18px;

right:18px;

bottom:18px;

}

}

@media(max-width:480px){

.hero h1{

font-size:32px;

}

.rooms h2,
.services h2,
.gallery h2,
.reviews h2,
.contact h2,
.reservation h2{

font-size:30px;

}

    .reserve-btn{
        width:auto;
        display:inline-flex;
        padding:10px 20px;
    }

}


/* =========================
LIGHTBOX
========================= */

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:100000;

}

.lightbox.show{

    opacity:1;
    visibility:visible;

}

.lightbox img{

    width:min(92%,1100px);
    max-height:90vh;

    object-fit:contain;

    border-radius:16px;

    box-shadow:0 25px 60px rgba(0,0,0,.6);

}

.close-lightbox{

    position:absolute;

    top:25px;
    right:35px;

    font-size:45px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    color:#D4AF37;

}



/* =========================
SCROLL ANIMATION
========================= */

/* ===========================
   SCROLL REVEAL
=========================== */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity .8s ease,
        transform .8s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Soldan */

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Sağdan */

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom */

.reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}



/* =========================
PRELOADER
========================= */

#preloader{

    position:fixed;
    inset:0;

    background:#0f172a;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:999999;

    transition:opacity .6s ease,
               visibility .6s ease;

}

#preloader.hide{

    opacity:0;
    visibility:hidden;

}

.loader{

    width:80px;
    height:80px;

    border:6px solid rgba(255,255,255,.15);
    border-top:6px solid #D4AF37;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

#preloader h2{

    margin-top:25px;

    color:#D4AF37;

    font-size:30px;

    letter-spacing:2px;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}



.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.image-wrapper img {

    width:100%;

    transition: transform .6s ease;
}

.image-wrapper:hover img{

    transform:scale(1.08);

}






.section-title{

position:relative;
display:inline-block;

}

.section-title::after{

content:"";

position:absolute;

left:50%;

bottom:-12px;

transform:translateX(-50%);

width:70px;

height:4px;

border-radius:20px;

background:#d4af37;

}


.glass{

backdrop-filter:blur(16px);

background:rgba(255,255,255,.12);

border:

1px solid rgba(255,255,255,.25);

border-radius:20px;

}




#progressBar{

position:fixed;

top:0;
left:0;

height:4px;

width:0;

background:#d4af37;

z-index:99999;

}


/* ================= LANGUAGE SWITCHER ================= */

.language-switcher{

    display:flex;

    align-items:center;

    gap:10px;

}

.lang-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.lang-btn:hover{

    background:#D4AF37;

    color:#111;

}

.lang-btn.active{

    background:#D4AF37;

    color:#111;

}