/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box; /* important for small screens */
}
a {
  text-decoration: none;
  color: white; 
}

html, body {
  width: 100%; 
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "typo", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Remove underline from all links globally */
a {
  text-decoration: none !important;
}
/* @media (max-width: 480px) {
  html, body {
    width: 110vw;
    min-width: 110vw;
    max-width: 110vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
  }
} */

.drawer {
    position: fixed;
    top: 0;
    right: -300px; /* hidden off screen */
    width: 300px;
    height: 100vh;
    background-color: #fff;
    color: #333;
    padding: 20px 30px;
    box-sizing: border-box;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  /* Drawer open */
  .drawer.open {
    right: 0;
  }

  /* Drawer links */
  .drawer ul {
    list-style: none;
    padding: 0;
    margin-top: 120px;
  }
  .drawer ul li {
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  .drawer ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .drawer ul li a {
    color: #333;
    text-decoration: none;
    font-size: 28px;
    display: block;
  }
  .drawer ul li a:hover {
    
  }

  /* Overlay when drawer is open */
  .overlay1 {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 300vh;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .overlay1.active {
    display: block;
  }
@font-face {
    font-family: 'Metropolis';
    src: url('/static/Metropolis-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'delmon';
    src: url('/static/Delmon.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'typo';
    src: url('/static/typo.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'helvetica';
    src: url('/static/Helvetica.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto';
    src: url('/static/Roboto-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato';
    src: url('/static/Lato-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gon';
    src: url('/static/Gontserrat-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bold';
    src: url('/static/bold.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Artines';
    src: url('/static/Arthines.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'chico';
    src: url('/static/Chicharito.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calton';
    src: url('/static/Caltons.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}

/* Discount Banner */
.discount-banner {
    background-color:#a8b8d0;
    color: black;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.banner-message {
    display: none;
}

/* Header */
.header {
    position: fixed; /* Make header always on top (sticky) */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above the background image */
    background-color: white;
    padding: 0px 0;
    color: #fff83e;
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
header.shrink {
  padding: 5px 10pAx;
  /* Adjust padding as needed */
  transform: scaleY(0.8) scaleX(0.8);
  /* Adjust vertical and horizontal scaling */
  transform-origin: top;
  /* Ensures scaling starts from the top */
  margin-top: 20px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.7);
  transition: padding 0.3s, transform 0.3s, top 0.5s ease;

}
.header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -250px;
    width: 100%;
}
@media (max-width: 480px) {
    .header .logo {
        margin-left: 0;
    }
}

.header .logo img {
    height: 120px;
    margin-right: 70px;
    /* ensures image/logo turns white */
}


/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
    position: relative;
    font-family: "delmon",sans-serif;
    font-weight: bold;
    top:5px; /* Move navbar further up */
    margin-left: 42px;
    margin-right: 42px;
}

.navbar li {
    display: flex;
    align-items: center;
}

/* Vertical line */
.divider {
    width: 1px;
    height: 54px;
    background-color: #ccc;
    margin-left: 18px;
    margin-right: 18px;
    position: relative;
    top: -14px; /* Move divider further up */
}

/* Phone icon */
.navbar a {
    color: black;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    font-family: "delmon",sans-serif;
    font-weight: bold;
    top: -5px;
    transition: transform 0.2s;
    /* Move navbar links further up */
}

.navbar a:hover {
    transform: scale(1.1);
}

/* Booking button */


/* Icons */
.icons a {
    margin-left: 20px;
    color: #333;
    margin-right: 20px;
    font-size: 30px;
    transition: color 0.3s;
    position: relative;
    top: -16px; /* Move header icons further up */
}

.icons a:hover {
    color: #ff4081;
}



.footer {
  background: #081a12;
  color: #fff;
  padding: 80px 40px 100px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr auto;
  gap: 40px;
  position: relative;
}

.footer-logo {
  font-size: 36px;
  margin-bottom: 30px;
}

.footer-col h4 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #d5d5d5;
}

.hours {
  margin-top: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 15px;
}

.footer-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.route-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #b9d9c3;
  text-decoration: none;
  font-size: 14px;
}

.footer-social {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f3d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #aaa;
}

.footer-bottom-menu a {
  margin: 0 10px;
  font-size: 12px;
  text-decoration: none;
  color: #aaa;
}

.book-btn {
  padding: 14px 28px;
  background: #fff;
  color: #0b3b26;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}


@media (max-width: 768px) {

  .footer {
    padding: 60px 30px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Move social icons to bottom */
  .footer-social {
    position: static;
    flex-direction: row;
    margin-top: 30px;
    grid-column: span 2;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Center menu column */
  .footer-menu li {
    margin-bottom: 12px;
  }

  /* Bottom section stacks */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }

  .footer-bottom-menu {
    order: 2;
  }

  .book-btn {
    order: 1;
    margin-bottom: 15px;
  }

  .footer-bottom p {
    order: 3;
  }
}
@media (max-width: 480px) {

  .footer {
    padding: 50px 12px 20px;
    
  }

  /* Serial vertical footer */
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 8px;
    width: 100%;
    margin-left: -50px;
  }

  .footer-col {
    width: 100%;
    display: block;
    margin-bottom: 8px;
    text-align: left;
    margin-left: 20px;
  }
  .footer-col h4 {
    margin: 18px 0 6px 0;
    font-size: 13px;
    margin-left: 20px;
  }
  .footer-col p,
  .route-link {
    font-size: 13px;
    margin: 0 0 3px 0;
    display: block;
    margin-left: 20px;
  }

  .footer-menu {
    text-align: left;
    padding-left: 0;
    margin: 16px 0 0 0;
    margin-left: 0px;
  }
  .footer-menu li {
    margin-bottom: 9px;
    display: block;
    margin-left: 20px;
  }

  .footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0 0;
    margin-left: 20px;
  }
  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 15px;
    margin-left: 0;
  }

  /* Serial bottom section */
  .footer-bottom {
    margin-top: 38px;
    gap: 11px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    width: 100%;
    margin-left: 20px;
  }
  .footer-bottom-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 7px;
    margin-left: 20px;
  }
  .footer-bottom-menu a {
    margin: 0;
    font-size: 11px;
    padding: 0;
    margin-left: 20px;
  }
  .book-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    margin: 0 0 6px 0;
    margin-left: 20px;
  }
  .footer-bottom p {
    font-size: 11px;
    text-align: left;
    margin: 0;
    margin-left: 20px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin:0 20px;
  z-index: 1100;
}
.bar {
  width: 28px;
  height: 3.5px;
  background-color: #222;
  margin: 3.5px 0;
  border-radius: 2px;
  display: block;
  transition: all 0.24s cubic-bezier(.52,0,.45,1);
}
/* Hide hamburger on desktop, show nav bar */
@media (max-width: 900px) {
  .navbar {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
}
/* Show navbar by default */

/* Drawer styles (see css/navbar.css for full drawer styles) */
.drawer {
  display: none;
}
.drawer.open {
  display: block;
}
@media (max-width: 900px) {
  .drawer {
    display: block;
    right: -400px;
  }
  .drawer.open {
    right: 0;
    /* Ensures drawer is fixed for mobile */
    position: fixed !important;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1001;
  }
}
/* Drawer backdrop styles */
#drawer-backdrop {
  transition: opacity 0.18s;
}
#drawer-backdrop.active {
  display: block !important;
  opacity: 1;
}

/* Prevent scroll helper class for <html> when drawer is open */
html.no-scroll, body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
}