/* ==========================
   RESET + GLOBAL
========================== */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px 40px;
    font-family:'Jura',Arial,sans-serif;
    font-size:1.1rem;
    line-height:1.6;
    color:#fff;
    background:
    radial-gradient(
        circle at top left,
        #444,
        transparent 35%
    ),
    linear-gradient(
        135deg,
        #0b0b0b,
        #1c1c1c 45%,
        #2b2b2b
    );
    background-attachment:fixed;
}

img{
    width:100%;
    display:block;
    border-radius:15px;
}

.center{
    text-align:center;
}

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

a{
    color:#cc0000;
    text-decoration:none;
    transition:.25s ease;
}

a:hover{
    color:#fff;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#ccc;
    color:#222;
    padding:10px 15px;
    border-radius:8px;
    font-size:.8rem;
    margin-top:20px;
    margin-bottom:15px;
}

.topbar span{
    font-weight:800;
    letter-spacing:3px;
}

.topbar a{

    color:#cc0000;
    font-weight:bold;
}

.topbar a:hover{

    text-decoration: underline;
}

/* ==========================
   LANGUAGE BUTTON
========================== */

.language-container{
    display:flex;
    justify-content:center;
    margin:20px 0;
}

.language-btn{
    background:none;
    color:#fff;
    border:1px solid #C7A15A;
    padding:10px 20px;
    border-radius:30px;
    cursor:pointer;
    font-family:inherit;
    font-size:1rem;
}

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

.header{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    padding:15px;
    background:
    rgba(40,40,40,.85);
    border:
    1px solid rgba(255,255,255,.08);
    border-radius:15px;
}

.header a{
    background:
    rgba(255,255,255,.08);
    color:#eee;
    padding:8px 12px;
    border-radius:8px;
    font-size:.85rem;
    letter-spacing:1px;
}

.header a:hover,
.header a.active{
    background:
    linear-gradient(
    90deg,
    #cc0000,
    #ff7e5f
    );
    color:white;
}

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

.sticky{
    position:fixed;
    top:10px;
    left:20px;
    right:20px;
    z-index:1000;
    background:
    rgba(33,33,33,.92);
    backdrop-filter:blur(10px);
}

.titles{
    scroll-margin-top:100px;
    font-size:1.4rem;
    background:#444;
    color:#eee;
    border-left:4px solid #cc0000;
    padding:5px 0 5px 10px;
    border-radius:5px;
}

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

.hero{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:20px;
}

.hero img{
    height:100%;
    object-fit:cover;
    filter:
    brightness(.75)
    contrast(1.1)
    saturate(1.1);
    transition:
    transform 8s ease;
}

.hero:hover img{
    transform:scale(1.08);
}


.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

    background:

    linear-gradient(
    transparent,
    rgba(0,0,0,.85)
    );

}


.hero-overlay h1{

    font-size:3rem;

    letter-spacing:8px;

    line-height:1.1;

}



.hero-buttons{

    display:flex;

    gap:15px;

    margin-top:25px;

}


.hero-buttons a{

    background:#cc0000;

    color:white;

    padding:12px 25px;

    border-radius:30px;

    letter-spacing:2px;

}


.hero-buttons a:hover{

    background:white;

    color:#cc0000;

}



/* ==========================
   HOURS BADGE
========================== */


.hours-badge{

    display:inline-flex;

    align-items:center;

    margin:20px 0;

    padding:12px 20px;

    background:

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

    border:

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

    border-radius:15px;

    font-weight:bold;

}


.hours-badge.open{

    border-color:#00aa44;

    box-shadow:

    0 0 15px rgba(0,170,68,.4);

}


.hours-badge.closed{

    border-color:#cc0000;

    box-shadow:

    0 0 15px rgba(204,0,0,.4);

}


/* ==========================
   RATING
========================== */

.rating{

    font-size:.9rem;

    opacity:.85;

    letter-spacing:1px;

}

.rating a{

    color:#fff;

}



/* ==========================
   LANGUAGE MODAL
========================== */


.language-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:

    rgba(0,0,0,.75);

    z-index:9999;

    padding:20px;

}


.language-box{

    position:relative;

    width:340px;

    max-height:80vh;

    overflow-y:auto;

    padding:35px;

    text-align:center;

    background:#211A15;

    border:1px solid #C7A15A;

    border-radius:20px;

    box-shadow:

    0 20px 60px rgba(0,0,0,.7);

    animation:langIn .25s ease;

}


.language-box h3{

    color:#F7F0E4;

    margin-top:0;

}


.language-box a{

    display:block;

    padding:12px;

    margin:8px 0;

    color:#F7F0E4;

    background:

    rgba(255,255,255,.05);

    border-radius:10px;

}


.language-box a:hover{

    background:#C7A15A;

    color:#211A15;

}


.close-lang{

    position:absolute;

    top:10px;

    right:15px;

    background:none;

    border:0;

    color:white;

    font-size:30px;

    cursor:pointer;

}


@keyframes langIn{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}



/* ==========================
   MOBILE MENU BUTTON
========================== */


.mobile-menu-btn{

    display:none;

    width:100%;

    padding:14px;

    margin:10px 0;

    background:

    linear-gradient(
    135deg,
    #211A15,
    #3A2A1D
    );

    color:#F7F0E4;

    border:1px solid #C7A15A;

    border-radius:15px;

    cursor:pointer;

    font-family:inherit;

    font-size:1.1rem;

    font-weight:bold;

    letter-spacing:2px;

}



/* ==========================
   FLOATING BUTTONS
========================== */


.reservation-btn{

    position:fixed;

    left:20px;

    bottom:20px;

    z-index:2000;


    background:#cc0000;

    color:white;

    padding:12px 18px;

    border-radius:30px;

    font-weight:bold;

    box-shadow:

    0 5px 20px rgba(0,0,0,.4);

}


.reservation-btn:hover{

    background:white;

    color:#cc0000;

}



.whatsapp-btn{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:2000;


    background:#25D366;

    color:white;

    padding:12px 20px;

    border-radius:30px;

    font-weight:bold;

    box-shadow:

    0 5px 20px rgba(0,0,0,.4);

}


.whatsapp-btn:hover{

    color:white;

    transform:translateY(-3px);

}



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


#myBtn{

    display:none;

    position:fixed;

    right:20px;

    bottom:90px;

    z-index:1500;

    border:0;

    background:#cc0000;

    color:white;

    cursor:pointer;

    padding:10px 15px;

    border-radius:12px;

    font-size:20px;

}


#myBtn:hover{

    background:white;

    color:#cc0000;

}



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


@media(max-width:700px){


body{

    padding:

    0 10px 30px;

    font-size:1rem;

}



.hero{

    height:380px;

}



.hero-overlay h1{

    font-size:2rem;

    letter-spacing:5px;

}



.hero-buttons{

    flex-direction:column;

    width:100%;

}


.hero-buttons a{

    text-align:center;

}



.mobile-menu-btn{

    display:block;

}



.header{

    display:none;

    flex-direction:column;

    gap:6px;

}


.header.mobile-open{

    display:flex;

    position:sticky;

    top:10px;

    z-index:900;

    background:

    rgba(33,26,21,.95);

    backdrop-filter:blur(10px);

}



.header a{

    text-align:center;

    padding:12px;

}



.sticky{

    position:sticky;

    top:10px;

    left:auto;

    right:auto;

}



.reservation-btn{

    left:15px;

    bottom:15px;

    font-size:.85rem;

}



.whatsapp-btn{

    right:15px;

    bottom:15px;

    font-size:.85rem;

}



.titles{

    font-size:1.2rem;

}



}



@media(max-width:420px){


.hero{

    height:330px;

}


.hero-overlay h1{

    font-size:1.7rem;

}


.reservation-btn,
.whatsapp-btn{

    padding:10px 14px;

    font-size:.75rem;

}



}

.image-container {
  width: 100%;
  height: 250px;

  margin-bottom: 15px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: none;
}

.caution {
  background: #751400;
  background-image: linear-gradient(135deg, #7a1126 25%, #6b0a1c 25%, #6b0a1c 50%, #7a1126 50%, #7a1126 75%, #6b0a1c 75%, #6b0a1c 100%);
  background-size: 20.00px 20.00px;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
}

.note {
  background: #751400;
  background-image: linear-gradient(135deg, #116115 25%, #0f6916 25%, #0f6916 50%, #116115 50%, #116115 75%, #0f6916 75%, #0f6916 100%);
  background-size: 20.00px 20.00px;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
  margin-bottom: 50px;
}

.price{

  padding: 2px 7px 3px 7px;
  border: 1px dashed #fff;
  border-radius: 8px;
  font-size: 0.8em;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin:25px 0;

}

.social{

display:inline-flex;
align-items:center;
gap:8px;

padding:7px 14px;

border-radius:30px;

font-size:.95em;
font-weight:bold;

text-decoration:none;
letter-spacing:1px;

color:#fff;

transition:.3s;

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

}

.social:hover{

transform:translateY(-3px);
box-shadow:
0 10px 25px rgba(0,0,0,.35);

}

.facebook{
background:#1877F2;
}

.maps{
background:#34A853;
}

.instagram{
background:linear-gradient(
45deg,
#F58529,
#DD2A7B,
#8134AF
);
}

.youtube{
background:#FF0000;
}

@media(max-width:700px){

.social-links{

flex-direction:column;

}

.social{

justify-content:center;

}

}

.map{
    width:100%;
    height:450px;
    border:0;
    border-radius:15px;
}

iframe{
    width:100%;
    border:0;
    border-radius:15px;
}

.copyright{
    display:flex;
    justify-content:center;
    margin:20px 0;
    font-size: 0.9em;
}