/*/////////////////////////// NORMALIZE /////////////////////////////////////////*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; 
  font-size: 100%;
  line-height: 1.15; 
}
button,
input { 
  overflow: visible;
}
button,
select { 
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%; 
  white-space: normal; 
}
progress {
  vertical-align: baseline;
} 
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; 
  padding: 0; 
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; 
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; 
  font: inherit; 
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/*/////////////////////////// BASE STYLES /////////////////////////////////////////*/
:root {
    --COLOR-MAIN: #31538c;
    --COLOR-MAIN-BRIGHT: #a5c3e8;
    --COLOR-MAIN-DARK: #1e2b44;
    --COLOR-SECONDARY-BRIGHT: #f5f1e9;
    --COLOR-SECONDARY-DARK: #a4b78d;
    --COLOR-HIGHLIGHT: #f9b04e;
    --COLOR-NEUTRAL: #3c3c3c;
    --progress: 0;
  }
html {
    font-size: 16px;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0.5em;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.78rem;
    line-height: 1.25;
    margin-bottom: 0.5em;
}
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.72rem;
    line-height: 1.3;
    margin-bottom: 0.5em;
}
p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1em;
}
.width-limiter{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/*//////////////////////////// HEADER STYLES ////////////////////////////*/ 
.main-nav {
    position: relative;
  }
  .mobile-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--COLOR-MAIN-DARK);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    border-bottom: 2px solid var(--COLOR-MAIN);
    box-shadow: 2px 2px 2px black;
  }
  .top-bar-logo img{
    margin-right: 8px;
 
    vertical-align: middle;
  }
  .top-bar-logo a{
    text-decoration: none;
  }
  .top-bar-logo span{
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    padding-top: .5rem;
  }
  .burger {
    height: 40px;
    width: 40px;
    position: relative;
    margin: 0 10px 0 auto;
    border: 5px solid transparent;
    border-radius: 50%;
    padding: 5px;
    background-color: white;
    transition: 0.3s;
    cursor: pointer;
  }
  .burger-bar {
    height: 3px;
    width: 20px;
    display: block;
    margin: 5px auto;
    position: relative;
    background-color: var(--COLOR-MAIN-DARK);
    border-radius: 10px;
    transition: transform 0.4s, opacity 0.4s;
  }
  .burger :first-child {
    margin-top: 0;
  }
  .burger.active .burger-bar:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-bar:nth-of-type(2) {
    opacity: 0;
  }
  .burger.active .burger-bar:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .circle-bg {
    position: fixed;
    top: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--COLOR-MAIN);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: 7;
  }
  .main-nav.active .circle-bg {
    transform: scale(50);
  }
  .site-menu,
  .menu-submenu {
      display: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
      position: fixed;
      top: 60px;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 2rem 1rem;
      background-image: linear-gradient(to bottom, var(--COLOR-MAIN), var(--COLOR-MAIN-DARK));
      flex-direction: column;
      justify-content: flex-start;
      z-index: 8;
      margin: 0;
      overflow-y: auto;
  }

  .menu-submenu.slow-close {
      opacity: 0;
      pointer-events: none;
  }

  .site-menu.visible,
  .menu-submenu.visible {
      display: flex;
  }

  .site-menu.active,
  .menu-submenu.active {
      opacity: 1;
      pointer-events: auto;
  }
  .site-menu li,
  .menu-submenu li {
      margin: 0;
      width: 100%;
      border: 2px solid var(--COLOR-MAIN-BRIGHT);
      border-radius: 10px;
      overflow: hidden;
      background-color: white;
      min-height: 80px;
      flex-shrink: 0;
      flex-grow: 0;
      flex-basis: auto;
      box-shadow: 2px 2px 5px black;
      background-size: cover;
      background-position: right;
      background-repeat: no-repeat;
  }
  .site-menu li:first-child{
      background-image: url('../images/experience-menu-button.webp');
  } 
  .site-menu li:nth-child(2){
      background-image: url('../images/our-menu-menu-button.webp');
  }
  .site-menu li:nth-child(3){
      background-image: url('../images/events-menu-button.webp');
  }
  .site-menu li:nth-child(4){
      background-image: url('../images/loyalty-menu-button.webp');
  }
  .menu-submenu li:first-child{
      background-image: url('../images/food-menu-button.webp');
  }
  .menu-submenu li:nth-child(2){
      background-image: url('../images/drinks-menu-button.webp');
  }
  .loyalty-submenu li:first-child{
      background-image: none;
  }
  .loyalty-submenu li:nth-child(2){
      background-image: none;
  }
  .site-menu li + li,
  .menu-submenu li + li {
      margin-top: 1rem;
  }
  .site-menu a,
  .menu-submenu a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: var(--COLOR-MAIN-DARK);
      font-size: 1.25rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
  }
  .site-menu a span,
  .menu-submenu a span {
    padding: 0.5rem 1rem;
  }
  body.menu-open {
    overflow: hidden;
  }
  .desktop-submenu{
    display: none;
  }
  /*//////////////////////////////Footer styles////////////////////////////////*/
  .site-footer {
    background-color: var(--COLOR-MAIN-DARK);
    background-image: linear-gradient(to bottom, var(--COLOR-MAIN-DARK), black);
    color: #fff;
    position: relative;
    bottom: 0;
    padding-top: .25rem;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  .footer-hours,
  .footer-nav,
  .footer-social,
  .footer-contact{
    flex: 1 1 200px;
    min-width: 200px;
    min-height: 250px;
    text-align: center;
    margin: 5px;
  }
  .footer-contact a{
    text-align: left;
  }
  .footer-contact a{
    padding-left: 2rem;
    margin: 1rem 0 .5rem 0;
  }
  .footer-container h3{
    background-color: white;
    color: var(--COLOR-MAIN-DARK);
    padding: .5rem;
  }
  .footer-nav ul,
  .footer-hours p,
  .footer-social p,
  .footer-contact p{
    padding: .5rem;
  }
  .footer-hours p{
    color: var(--COLOR-HIGHLIGHT);
  }
  .footer-hours p span{
    color: white;
  }
  .footer-nav li{
    list-style: none;
  }
  .footer-nav a{
    text-decoration: none;
    color: white;
  }
  .footer-nav a:hover,
  .footer-nav a:focus,
  .footer-contact a:hover,
  .footer-contact a:focus{
    color: var(--COLOR-HIGHLIGHT);
  }
  .footer-social-link{
    color: white;
    text-decoration: none;
  }
  .footer-social-link p span{
    padding-bottom: 0rem;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
  }
  .footer-social-link:hover,
  .footer-social-link:focus {
    color: var(--COLOR-HIGHLIGHT);
  }
  .footer-contact{
    display: flex;
    flex-direction: column;
  }
  .footer-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    fill: var(--icon-color);
}
/*//////////////////////////////////////WELCOME POPUP ///////////////////////////////////////*/
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Container */
.popup {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: red;
}

/* Popup Content */
.popup h2 {
  margin-top: 0;
  font-size: 24px;
  color: #333;
}

.popup p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}


  
  @media (min-width: 768px) {
    h1 {
        font-size: 2.78rem;
    }
    h2 {
        font-size: 1.72rem;
    }
    h3 {
        font-size: 1.06rem;
    }
    .width-limiter{
        padding: 0 0.5rem;
    }
    /*/////// HEADER STYLES /////////*/
    .header{
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 3;
      background-color: var(--COLOR-MAIN);
    }
    .main-nav{
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .mobile-top-bar,
    .circle-bg,
    .menu-submenu {
      display: none;
    }
    .site-menu {
      display: flex;
      opacity: 1;
      position: static;
      width: auto;
      padding: 0;
      background: transparent;
      flex-direction: row;
      justify-content: center;
      pointer-events: auto;
  }
  .site-menu li {
      width: auto;
      background-image: none;
      height: auto;
      min-height: 0;
      line-height: 1;
      border: none;
      border-radius: 0;
      background-color: transparent;
  }
  .site-menu li + li{
      margin-top: 0rem;
      margin-left: 1em;
  }
  .site-menu li:first-child,
  .site-menu li:nth-child(2),
  .site-menu li:nth-child(3),
  .site-menu li:nth-child(4),
  .menu-submenu li:first-child,
  .menu-submenu li:nth-child(2){
    background-image: none;
} 
  .site-menu li,
  .menu-submenu li{
    box-shadow: none;
  }
  .site-menu a{
      font-size: 1rem;
      color: white;
  }
  .site-menu > li:hover > a > span,
  .site-menu > li:focus-within > a > span {
      background-image: linear-gradient(to top, transparent, var(--COLOR-MAIN-DARK));
  }
  .menu-item{
    position: relative;
  }
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .desktop-submenu{
    display: none;
    position: absolute;
    top: 100%;
    gap: 1rem;
    padding: 1rem .75rem;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 5px black;
    border-radius: 0px 0px 5px 5px;
  }
  .menu-hover-trigger:hover > .desktop-submenu,
  .menu-hover-trigger:focus > .desktop-submenu {
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s forwards;
  }   
  .desktop-menu-image{
    height: 24px;
    width: auto;
    margin-left: .25rem;  
  }
  .desktop-submenu li + li {
    margin-left: 0;
  }
  .desktop-submenu a{
    color: white;
    font-size: 1.25rem;
    text-align: center;
    background-image: linear-gradient(to left, var(--COLOR-MAIN-DARK) 50%, var(--COLOR-MAIN));
    display: flex;
    justify-content: space-between;
    padding: .5rem;
    border-radius: 5px;
    border: 1px solid white;
  }
  .desktop-submenu li{
    transition: all .2s ease-in-out;
  }
  .desktop-submenu li:hover{
    transform: scale(1.05);
    box-shadow: 2px 2px 5px black;
  }
  .desktop-submenu a span{
    padding: 0;
    margin: .5rem 2rem;
    align-self: flex-end;
  }
  }
