:root {

    --main-color: #000000;

    --accent-color: #b8a600;

    --p-color: #cc9828 ;

    --light-color: #ffffff;

    --gray-color: #f2f1f1;

}



@font-face {

  font-family: 'Brushstrike';

  src: url('Brushstrike\ trial.ttf') format('ttf');

  font-weight: normal;

  font-style: normal;

}

.kudyznudy { 

  position: absolute;

  width: 400px;

  left: 140px;

}



a {

  text-decoration: none;

}


/* From Uiverse.io by gharsh11032000 */ 
button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  margin: 20px;
  color: rgb(193, 163, 98);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: rgb(193, 163, 98);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

button:hover::before {
  scale: 3;
}

button:hover {
  color: #212121;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

button:active {
  scale: 1;
}




/* From Uiverse.io by gharsh11032000 */ 
.button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  margin: 20px;
  color: rgb(193, 163, 98);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: rgb(193, 163, 98);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  scale: 3;
}

.button:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

.button:active {
  scale: 1;
}




.mapbox {

  position: relative;

  height: 300px;

  width: 100%;

  border-radius: 5px;

  margin-bottom: 20px;

  overflow: hidden;

  border: var(--accent-color) solid 1px;

}



.mapbox figure {

  height: 100%;

}



.mapbox iframe {

  width: 100%;

  height: 100%;

  filter: sepia(0.5);

}



.by {

  color: #666;

  font-size: 13px;

}

.by a {

  color: #666;

  font-size: 14px;

  text-decoration: underline;

  transition: all ease-in-out 0.1s;

}

.by a:hover {

  color: aquamarine;

  text-decoration: none;

  text-decoration: double underline;

}





* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}



body {

    background-color: var(--light-color);

    color: var(--main-color);

    line-height: 1.6;

}



header {

    background-color: rgb(31, 31, 31);

    color: var(--light-color);

    padding: 1rem;

    position: sticky;

    top: 0;

    z-index: 100;

}



.imghero {

    display: flex;

    flex-shrink: 1;

    flex: 1; /* Umožní flexibilní zmenšování */

    justify-content: center; /* Umožní, aby byl obrázek centrovaný */

}



.imghero img {

    max-width: 90%; /* Zajistí, že se obrázek zmenší podle velikosti kontejneru */

    height: auto; /* Zachová správný poměr stran */

}



.container{

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 0rem;

}

.reservation {

  width: 50%;

  border-radius: 40px;

  margin: 0px auto 0px auto;

}



/* CSS pro změnu barvy při hoveru */

nav ul li a:hover {

  color: var(--accent-color);

  text-decoration: underline; /* Podtržení při hoveru */

} 



/* CSS pro aktivní odkaz */

nav ul li a.active {

  color: var(--accent-color);

  font-weight: bold;

}







nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



nav .logo {

    font-size: 1.5rem;

    font-weight: bold;

    font-family: 'BRUSHSTRIKE', sans-serif;

    color: var(--accent-color);

}



nav ul {

    display: flex;

    list-style: none;

}



nav ul li {

    margin-left: 1rem;

}

h2 {

  color: var(--accent-color);

  font-weight: bold;

  font-size: 28px;

}

nav ul li a {

    color: var(--light-color);

    text-decoration: none;

    transition: color ease-in-out 0.5s; 

}



nav ul li a:hover {

    color: var(--accent-color);

}



.hamburger {

    display: none;

    cursor: pointer;

}


/* =========================================================
   HERO 100vh (full screen) + video background blur 25px
   ========================================================= */

:root{
  --header-h: 64px;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;

  z-index: 9999;

  transition: all 0.4s ease;
}

/* Stav když jsi nahoře */
header.top{
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

/* Stav po scrollu */
header.scrolled{
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Hero full screen */
.hero{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;

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

  text-align: center;
  color: var(--light-color);
  background: #000;
}

/* Background video */
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  /* blur + tmavší */
  filter: blur(15px) brightness(0.35);
  transform: scale(1.12); /* aby blur neodhalil okraje */
}

/* Extra overlay (ještě lehce tmavší) */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Obsah nad videem */
.hero-content{
  position: relative;
  z-index: 2;

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

  padding: 110px 16px 60px; /* top padding kvůli menu */
}

/* Obrázek uprostřed */
.imghero{
  width: min(820px, 92vw);
  margin: 0 auto 24px;
}

.imghero img{
  width: 100%;
  height: auto;
  display: block;

  border-radius: 20px;
}

/* Text */
.hero h1{
  font-size: clamp(22px, 2.2vw, 36px);
  margin: 0 0 12px;

  color: var(--accent-color);
  font-family: "BRUSHSTRIKE", sans-serif;
}

.hero p{
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.6;

  margin: 0 0 22px;
  max-width: 820px;

  color: rgba(255,255,255,0.85);
}

/* Tlačítka pod textem */
.mediahero{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Mobile úpravy */
@media (max-width: 768px){
  .hero-content{
    padding: 95px 14px 50px;
  }

  .imghero{
    width: min(640px, 94vw);
  }

  .mediahero{
    gap: 12px;
  }

  .button{
    margin: 10px;
  }
}


.btn {

    display: inline-block;

    background-color: var(--accent-color);

    color: var(--main-color);

    padding: 0.8rem 1.5rem;

    text-decoration: none;

    border-radius: 5px;

    margin: 10px 20px 0px 20px;

    font-weight: bold;

    transition: background-color 0.3s;

}



.btn:hover {

  background-color: var(--accent-color);

}



.games {

    padding: 4rem 0;

    border-bottom: solid var(--accent-color) 2px;

}



.games h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.games-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 2rem;


}



.game-card {

    display: flex;

    flex-direction: column; /* Umožní zarovnání obsahu ve vertikálním směru */

    border-radius: 5px;

    overflow: hidden;

    transition: transform 0.3s;

    height: 100%;

}



.game-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}



.game-img {

    position: relative;

    max-width: 100%;

    max-height: 200px;

    overflow: hidden;

}



.game-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.games-grid + .games-grid {
    margin-top: 3rem;
    margin-bottom: 1rem;
}



.game-content {

    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Tento krok zarovná obsah tak, aby tlačítko bylo dole */
    flex-grow: 1; /* Zajistí, že tento obsah zabere zbylý prostor */

}



.game-meta {

    font-size: 0.9rem;

    color: #555;

}



.game-content h3 {

    margin-bottom: 0.5rem;

}



.game-content p {

    margin-bottom: 1rem;

    color: #666;

}



.game-meta {

    display: flex;

    justify-content: space-between;

    font-size: 0.9rem;

    color: #666;

    margin-bottom: 1rem;

}



.btngame {

    margin-top: auto; /* Tlačítko bude automaticky posunuto na dno */

    padding: 0.8rem 1.5rem;

    background-color: var(--accent-color);

    font-weight: bold;

    color: var(--main-color);

    text-decoration: none;

    border-radius: 5px;

    display: inline-block;

}



.btngame:hover {

  background-color: var(--accent-color);

}





.contact {

    background-color: var(--light-color);

    padding: 4rem 0;

}



.contact h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.contact-info {

    display: flex;

    flex-wrap: wrap;

    gap: 2rem;

}



.contact-details {

    flex: 1;

    min-width: 300px;

}



.contact-details li{

  margin-left: 50px;

}



.contact-details a {

  color: var(--accent-color);

  text-decoration: none;

}

.contact-details a:hover {

  color: var(--accent-color);

  text-decoration: underline;

}



.contact-details p {

    margin-bottom: 1rem;

}



.contact-map {

    flex: 1;

    min-width: 300px;

    height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.faq {

    padding: 4rem 0;

}



.faq h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.faq-item {

    margin-bottom: 1rem;

    border: 1px solid #ddd;

    border-radius: 5px;

    overflow: hidden;

}



.faq-question {

    padding: 1rem;

    background-color: var(--gray-color);

    cursor: pointer;

    font-weight: bold;

    display: flex;

    justify-content: space-between;

    align-items: center;

}







.faq-answer {

    padding: 1rem;

    display: none;

}



.reviews {

    background-color: var(--light-color);

    padding: 4rem 0;

    border-top: solid var(--accent-color) 2px;

}



.reviews h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.reviews-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 2rem;

}



.review-card {

    background-color: var(--light-color);

    padding: 2.5rem;


    border-radius: 5px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}



.review-content {

    margin-bottom: 2rem;

}



.review-author {

    margin: 0;
    font-weight: bold;

}



.stars {

    color: var(--accent-color);

    margin-bottom: 0.5rem;

}



footer {

    background-color: rgb(24, 24, 24);

    color: var(--light-color);

    padding: 2rem 0;

    text-align: center;

}



.footer-links {

    display: flex;

    justify-content: center;

    margin-bottom: 1rem;

}



.footer-links a {

    color: var(--light-color);

    margin: 0 1rem;

    text-decoration: none;

}



.footer-links a:hover {

    color: var(--accent-color);

}



.social-links {

    display: flex;

    justify-content: center;

    margin-bottom: 1rem;

}



.social-links a {

    color: var(--light-color);

    margin: 0 0.5rem;

    text-decoration: none;

    font-size: 1.5rem;

}



.social-links a:hover {

    color: var(--accent-color);

}



.copyright {

    font-size: 0.9rem;

    color: #999;

}



/* Ceník */

.pricing {

    padding: 4rem 0;

    margin: auto;

}



.pricing h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.pricing-table {

    width: 100%;

    border-collapse: collapse;

    margin-bottom: 2rem;

}



.pricing-table th,

.pricing-table td {

    padding: 1rem;

    text-align: left;

    border-bottom: 1px solid #b9b9b9;

}



.pricing-table th {

    background-color: var(--gray-color);

}



.pricing-note {

    font-size: 0.9rem;

    color: #666;

    text-align: center;

}



/* Rezervace */

.reservation {

    padding: 4rem 0;

}



.reservation h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.reservation-form {

    max-width: 600px;

    margin: 0 auto;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group label {

    display: block;

    margin-bottom: 0.5rem;

    font-weight: bold;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 0.8rem;

    border: 1px solid #ddd;

    border-radius: 5px;

}

/* Skryjeme původní checkbox */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Styl vlastního checkboxu */
.custom-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.2s;
}

/* Když je zaškrtnutý */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* Hák (check icon) */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Zobrazit háček, když je zaškrtnutý */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  display: none;
}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

  outline: none;

  border: 2px solid var(--accent-color);

}



.form-group textarea {

    height: 150px;

    resize: none;

}



.form-group .btn {

    border: none;

    cursor: pointer;

}



@media (max-width: 768px) {

nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 120vh;
    background: linear-gradient(135deg, var(--main-color) 80%, #222 100%);
    text-align: center;
    padding: 2rem 0 0 0;
    z-index: 9999;
    margin: 0;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: opacity 0.4s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-40px);
}

nav ul.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

nav ul li {
    margin: 1rem 0;
}

nav ul li a {
    display: block;
    padding: 0rem 0.2rem;
    font-size: 1.4rem;              /* větší písmo pro lepší čitelnost */
    font-weight: 600;               /* polotučné písmo pro eleganci */
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7); /* jemný stín pro hloubku */
    border-radius: 16px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.05em;         /* lehký mezerování mezi znaky */
    text-decoration: none;
    line-height: 2;               /* zvětšené řádkování */
}

nav ul li a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffe598;
}


.hamburger {
    cursor: pointer;
    width: 35px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10000;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 4px;
    transition: all 0.4s ease;
    transform-origin: center; /* důležité pro správnou rotaci */
}

/* Animace hamburger → X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}




          .kudyznudy {
  
        display: none;
  
      }
    
    .hero h1 {
      
      font-size: 2rem;

    }

    
    
    .hero p {
      
      font-size: 1rem;

    }

    
    
    .reservation {
    
      width: 90%;

      border-radius: 40px;

      margin: 0px auto 0px auto;

    }



    .mediahero {

      display: flex;

      flex-direction: column;

      flex: 1;

      flex-wrap: wrap;

    } 

    .media {

      display: flex;

      flex-direction: column;

      flex: 1;

      justify-content: center;

      flex-wrap: wrap;

    }

    .container{

      max-width: 700px; 

      margin: 0 auto;

      padding: 0 1rem;

  }
.pricing-table thead {
  display: none;
}

.pricing-table,
.pricing-table tbody,
.pricing-table tr,
.pricing-table td {
  display: block;
  width: 100%;
}

.pricing-table {
  border-radius: 10px;
}

.pricing-table tr {
  margin-bottom: 2rem;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-table td {
  display: flex; /* FLEXBOX! */
  align-items: center; /* vertikální zarovnání na střed */
  padding: 1.5rem;
  border: none;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  line-height: 1.5;
  box-sizing: border-box;
}

.pricing-table td:last-child {
  border-bottom: none;
}

.pricing-table td::before {
  content: attr(data-label);
  flex: 0 0 40%; /* fixní šířka 40 % */
  margin-right: 2rem; /* mezera mezi label a hodnotou */
  font-weight: bold;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.4;
}





/* Celý loading screen */

.loading-screen {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgb(255, 255, 255);

    /* Bílé poloprůhledné pozadí */

    display: flex;

    justify-content: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 1000;

    transition: opacity 0.8s ease, visibility 0.8s ease;

  }

  

  /* Skrytí po načtení stránky */

  .hidden {

    opacity: 0;

    visibility: hidden;

  }

  

  /* Logo v loading screenu */

  .loading-screen .logo {

    position: absolute;

    top: 20%;

    height: 20%;

    margin: 0 auto 0 auto;

    animation: fadeIn 1.2s ease-in-out;

  }

  

  /* Plynulé zobrazení loga */

  @keyframes fadeIn {

    0% {

        opacity: 0;

        transform: scale(0.8);

    }

  

    100% {

        opacity: 1;

        transform: scale(1);

    }

  }







/* From Uiverse.io by TemRevil */ 

.loading {

    display: flex;

    justify-content: center;

    align-items: center;

  }

  .loading-wide {

    width: 150px;

    height: 150px;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

  }

  .color {

    background-color: #fcff33;

  }

  

  .l1 {

    width: 15px;

    height: 65px;

    position: absolute;

    animation: move-h 1.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  

  .l2 {

    width: 15px;

    height: 60px;

    position: absolute;

    transform: rotate(90deg);

    animation: move-v 1.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  

  @keyframes move-h {

    0% {

      top: 0;

      opacity: 0;

    }

    25% {

      opacity: 1;

    }

    50% {

      top: 30%;

      opacity: 1;

    }

    75% {

      opacity: 1;

    }

    100% {

      top: 100%;

      opacity: 0;

    }

  }

  @keyframes move-v {

    0% {

      left: 0;

      opacity: 0;

    }

    25% {

      opacity: 1;

    }

    50% {

      left: 45%;

      opacity: 1;

    }

    75% {

      opacity: 1;

    }

    100% {

      left: 100%;

      opacity: 0;

    }

  }

  

  .animation-effect-light {

    animation: effect 0.2s 0.1s infinite linear;

  }

  .animation-effect-light-d {

    animation: effect 0.3s 0.2s infinite linear;

  }

  .animation-effect-rot {

    animation: rot 0.8s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  .animation-effect-scale {

    animation: scale 0.8s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  

  @keyframes effect {

    0% {

      opacity: 0;

    }

    50% {

      opacity: 1;

    }

    100% {

      opacity: 0;

    }

  }

  @keyframes rot {

    0% {

      transform: rotate(0deg);

    }

    50% {

      transform: rotate(180deg);

    }

    100% {

      transform: rotate(360deg);

    }

  }

  @keyframes scale {

    0% {

      scale: 1;

    }

    50% {

      scale: 1.9;

    }

    100% {

      scale: 1;

    }

  }

  .e1 {

    width: 1px;

    height: 40px;

    opacity: 0.3;

    position: absolute;

    top: 0;

    left: 8%;

  }

  .e2 {

    width: 60px;

    height: 1px;

    opacity: 0.8;

    position: absolute;

    top: 8%;

    left: 0;

  }

  .e3 {

    position: absolute;

    top: 10%;

    left: 12%;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    font-weight: 900;

    font-size: 18px;

    color: #978100;

  }

  .e4 {

    width: 1px;

    height: 40px;

    opacity: 0.3;

    position: absolute;

    top: 90%;

    right: 10%;

  }

  .e5 {

    width: 40px;

    height: 1px;

    opacity: 0.3;

    position: absolute;

    top: 100%;

    right: 0;

  }

  .e6 {

    position: absolute;

    top: 100%;

    right: 0;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    font-size: 32px;

    color: #a77711;

  }

  .e7 {

    width: 1px;

    height: 20px;

    position: absolute;

    bottom: 0;

    left: 0;

    transform: rotate(45deg);

    animation: height 1s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  @keyframes height {

    0% {

      bottom: 0%;

      left: 0%;

      height: 0px;

    }

    25% {

      height: 90px;

    }

    50% {

      bottom: 100%;

      left: 100%;

      height: 90px;

    }

    75% {

      height: 0px;

    }

    100% {

      bottom: 0%;

      left: 0%;

      height: 0px;

    }

  }

  .e8 {

    width: 20px;

    height: 1px;

    position: absolute;

    bottom: 50%;

    left: 0;

    animation: width 1.5s infinite cubic-bezier(0.65, 0.05, 0.36, 1);

  }

  @keyframes width {

    0% {

      left: 0%;

      width: 0px;

    }

    50% {

      left: 100%;

      width: 90px;

    }

    100% {

      left: 0%;

      width: 0px;

    }

  }

  

  .media {

    display: flex;

    flex-direction: row;

    gap: 20px;

  }

  .mediahero {

    display: flex;

    justify-content: center;

    flex-direction: row;

    gap: 20px;

  }



  a {

    text-decoration: none;

  }
		
}


/* =========================================================
   Modern refresh (no layout changes) – 2026
   This section overrides earlier rules to update the look.
   ========================================================= */

:root{
  /* keep existing variable names but modernize values */
  --main-color: #0b0d10;            /* used for hero / dark areas */
  --light-color: #ffffff;
  --gray-color: #f4f5f7;

  /* brand */
  --accent-color: #d6b85a;          /* warm modern gold */
  --p-color: #e7d7a3;

  /* new helpers */
  --text-color: #111318;
  --muted-color: rgba(17,19,24,.70);
  --border-color: rgba(17,19,24,.12);
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --shadow-sm: 0 6px 18px rgba(0,0,0,.08);
  --shadow-md: 0 14px 40px rgba(0,0,0,.12);
  --ring: 0 0 0 4px rgba(214,184,90,.22);
  --radius: 16px;
  --radius-lg: 22px;
}

/* global polish */
html{ scroll-behavior:smooth; }
body{
  background: radial-gradient(1200px 600px at 15% 10%, rgba(214,184,90,.10), transparent 55%),
              radial-gradient(1000px 700px at 90% 0%, rgba(0,0,0,.04), transparent 55%),
              var(--light-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection{ background: rgba(214,184,90,.35); }

/* nicer container rhythm without changing widths */
.container{ padding-left: 1rem; padding-right: 1rem; }


nav ul li a{
  position: relative;
  letter-spacing: .01em;
  margin: 0 0.3rem;
}

nav ul li a::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after{
  opacity: 1;
  transform: translateY(0);
}

nav .logo{
  text-shadow: 0 0 24px rgba(214,184,90,.25);
}

/* hero */
.hero{
  background: radial-gradient(900px 480px at 50% 0%, rgba(214,184,90,.18), transparent 55%),
              linear-gradient(180deg, #0b0d10 0%, #0b0d10 60%, rgba(11,13,16,.92) 100%);
}

.hero::before{
  opacity: .12; /* keep your image, but subtle and classy */
  filter: saturate(1.05) contrast(1.05);
}

.hero.loaded::before{ opacity: .20; }

.hero h1{
  letter-spacing: .02em;
  text-shadow: 0 10px 50px rgba(0,0,0,.55);
}

.hero p{
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}

/* buttons – keep existing structure, refine interaction */
button,
.button{
  border-color: rgba(214,184,90,.90);
  color: rgba(214,184,90,.95);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  will-change: transform;
}

button::before,
.button::before{
  background: linear-gradient(135deg, rgba(214,184,90,1) 0%, rgba(193,163,98,1) 55%, rgba(214,184,90,1) 100%);
}
  

button:active,
.button:active{
  transform: translateY(0) scale(1.00);
}

/* cards */
.game-card,
.review-card{
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.game-card:hover{
  box-shadow: var(--shadow-md);
}

.game-img img{
  transform: scale(1.01);
  transition: transform .5s ease;
}

.game-card:hover .game-img img{
  transform: scale(1.06);
}

/* headings */
h2{
  letter-spacing: .02em;
  text-shadow: 0 0 18px rgba(214,184,90,.18);
}

/* pricing table */
.pricing-table{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: var(--surface);
}

.pricing-table th{
  background: linear-gradient(180deg, var(--gray-color) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table td{
  color: rgba(17,19,24,.88);
}

.pricing-table tr:hover td{
  background: rgba(214,184,90,.05);
}

/* forms */
.reservation{
  background: transparent;
}

.reservation-form{
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.form-group label{
  color: rgba(17,19,24,.86);
}

.form-group input,
.form-group select,
.form-group textarea{
  background: var(--surface-2);
  border: 1px solid rgba(17,19,24,.14);
  border-radius: 14px;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover{
  border-color: rgba(17,19,24,.20);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: rgba(214,184,90,.95);
  box-shadow: var(--ring);
  background: #fff;
}

/* checkbox – fix checked tick visibility */
.custom-checkbox .checkmark{
  background: #f1f2f4;
  border-color: rgba(17,19,24,.20);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark{
  background: rgba(214,184,90,.95);
  border-color: rgba(214,184,90,.95);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after{
  display: block; /* was hidden before */
}

/* FAQ */
.faq-item{
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.faq-question{
  background: linear-gradient(180deg, var(--gray-color) 0%, #fff 100%);
}

.faq-answer{
  color: var(--muted-color);
}

/* contact map frame */
.mapbox{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,184,90,.35);
  box-shadow: var(--shadow-sm);
}

.mapbox iframe{
  filter: saturate(1.05) contrast(1.05);
}

/* footer */
footer{
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -10px 30px rgba(0,0,0,.22);
}

/* mobile menu: keep layout, make it a bit more premium */
@media (max-width: 768px){
  nav ul{
    background: radial-gradient(900px 500px at 20% 0%, rgba(214,184,90,.18), transparent 55%),
                linear-gradient(135deg, #0b0d10 80%, #141823 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  nav ul li a{
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
  }
  nav ul li a:hover{
    background: rgba(214,184,90,.12);
    border-color: rgba(214,184,90,.22);
  }
}

/* motion accessibility */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
