/* Google Fonts Import - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Adobe Typekit - DIN 2014 (Jaguars Display Font) */
@import url("https://use.typekit.net/zfi8wzp.css");

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding-bottom: 8px !important;
}
#support-contact {
  padding-top: 8px !important;
}

body > .container {
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-style: normal;
  color: #006778;
}

/* Link Styling */
.footer-contact .prose a, .footer-contact p a, .footer-contact dd a {
  color: #D7A22A;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-contact .prose a:hover, .footer-contact p a:hover, .footer-contact dd a:hover {
  text-decoration-style: solid;
}

a, a:hover, a:focus {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  background: #f5f5f5;
  color: #111827;
  width: 100%;
  margin-bottom: 48px;
}

header .desktop-nav {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

header .mobile-nav {
  display: none;
}

@media (min-width: 640px) {
  header .desktop-nav {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  header .desktop-nav {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.logo {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 12px;
}

@media (min-width: 640px) {
  .logo {
    left: 24px;
  }
}

@media (min-width: 1024px) {
  .logo {
    left: 32px;
  }
}

.logo img {
  height: 96px;
  width: 148px;
  object-fit: contain;
  display: block;
}

.mobile-toggle-wrapper {
  display: none;
  margin-left: auto;
  padding: 24px 0;
}

/* Desktop Navigation Links */
.desktop-nav-links {
  list-style: none;
  display: none;
  gap: 48px;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .desktop-nav-links {
    display: flex;
    padding-left: 12%;
  }
}

@media (min-width: 1280px) {
  .desktop-nav-links {
    padding-left: 10%;
  }
}

/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
  position: relative;
}

.nav-links a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding: 24px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #D7A22A;
}

.nav-links a.active {
  color: #D7A22A;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #9ca3af;
}

/* Dropdown Styles */
.dropdown-main-nav {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  left: 50%;
  transform: translateX(-33%);
  width: 224px;
  text-align: left;
  list-style: none;
  padding: 8px;
  margin-top: -4px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 10;
  visibility: hidden;
  transition: opacity 0.1s ease-out, visibility 0.1s ease-out;
  transition-delay: 75ms;
  pointer-events: none;
}

.dropdown-main-nav li {
  padding: 0;
  background-color: transparent;
  display: block;
}

.dropdown-main-nav a {
  color: #111827;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  gap: 0;
}

.dropdown-main-nav a:hover {
  background: #f9fafb;
  color: #D7A22A;
}

.dropdown-main-nav a.active {
  color: #D7A22A;
}

@media (min-width: 1024px) {
  .nav-links li:hover .dropdown-main-nav {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0ms;
    pointer-events: auto;
  }
}

.dropdown-main-nav.active {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Header Button */
.book-now-wrapper {
  display: none;
  margin-left: 24px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .book-now-wrapper {
    display: flex;
    gap: 24px;
  }
}

header .book-now-btn {
  background: #006778;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  outline: none;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-family: "din-2014", sans-serif;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

header .book-now-btn:hover {
  background: #164e63;
  color: #ffffff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin: -10px;
  padding: 10px;
}

.menu-toggle:hover {
  background: none;
}

.menu-icon {
  width: 24px;
  height: 24px;
  color: #374151;
  pointer-events: none;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: none !important;
}

.mobile-home-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
}

.home-icon {
  width: 24px;
  height: 24px;
  color: #374151;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: none;
}

.close-icon {
  width: 24px;
  height: 24px;
  color: #374151;
  pointer-events: none;
}

/* Mobile Book Now Button */
.mobile-book-now {
  display: none;
  padding: 24px;
}

.mobile-book-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Footer Styles */
.footer {
  background: #111827;
  color: #ffffff;
  padding: 64px 24px 32px;
  margin-top: -3px;
}

@media (min-width: 640px) {
  .footer {
    padding-top: 96px;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 128px;
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 64px;
}

.footer-logo-section {
  grid-column: span 1;
}

.footer-logo-section img {
  height: 100px;
  width: 161px;
  object-fit: contain;
}

.footer-heading {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #D7A22A !important;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-contact {
  margin-top: 32px;
}

.footer-contact p {
  font-size: 14px;
  line-height: 24px;
  color: #d1d5db;
  margin: 8px 0;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f3f4f6;
}

.footer-contact .contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 16px;
}

.footer-contact .hours-title {
  font-weight: 700;
  color: #ffffff;
  margin-top: 16px;
}

.footer-contact .license-info {
  font-size: 12px;
  margin-top: 16px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icons a {
  color: #9ca3af;
  text-decoration: none;
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Footer Columns */
.footer-columns {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.footer-column {
  min-width: 200px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
  line-height: 24px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  line-height: 24px;
  color: #9ca3af;
  margin: 0;
}

.footer-bottom .newsletter-btn {
  background: #006778;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-family: "din-2014", sans-serif;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
}

.footer-bottom .newsletter-btn:hover {
  background: #164e63;
}

/* Content Wrapper */
div#content-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 32px 20px;
  min-height: 60vh;
  background: #ffffff;
}

/* Button Overrides for Booking System */
button.party-count-btn {
  background: #006778;
  color: #ffffff;
  border: none;
  outline: none;
}

a.btn.account-status {
  background: #006778;
  color: #ffffff;
  outline: none;
  border: none;
}

a.btn.select-cat.pull-right-sm {
  background: #006778;
  color: #ffffff;
  border: none;
  outline: none;
}

a.btn.pull-right-sm {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

button#form-submit {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn.btn-success {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn.btn-danger {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn.select-item {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn.select-trip.pull-right-sm {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn.skip-addon {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

a.btn {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff !important;
  transition: background-color 0.3s ease;
}

a.btn:hover, button:hover, a.btn:focus, button:focus {
  background: #164e63;
  opacity: 1;
}

button.dropdown-toggle {
  background: #006778;
  border: none;
  outline: none;
  color: #ffffff;
}

button {
  background: #006778;
  outline: none;
  border: none;
  color: #ffffff;
}

/* Navbar Overrides */
.navbar-inverse .navbar-toggle {
  border-color: transparent !important;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #999 !important;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
  background: transparent !important;
}

.navbar-collapse.collapse a {
  color: #111827 !important;
}

a.navbar-brand {
  color: #999 !important;
  background: transparent;
  max-width: none;
  height: 40px;
  font-size: 10px !important;
  text-transform: uppercase;
}

nav.navbar.navbar-inverse.navbar-fixed-top {
  background: #fff;
  border-color: #eee !important;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #eee !important;
}

a.dropdown-toggle {
  background: #f5f5f5;
  color: #111827 !important;
}

ul.nav.navbar-nav.navbar-right a {
  color: #666 !important;
  font-size: 12px !important;
}

li.dropdown-main-nav:hover {
  background: #f5f5f5 !important;
  border: none;
  outline: none;
  color: #111827 !important;
}

a.dropdown-toggle:focus {
  background: #f5f5f5 !important;
  color: #111827;
  border: none;
  outline: none;
}

ul.dropdown-menu li a:hover {
  background: #f9fafb;
  color: #D7A22A;
}

ul.dropdown-menu li a:focus {
  background: #f9fafb;
  border: none;
  outline: none;
}

.dropdown-main-nav {
  padding: 0;
}

.dropdown-menu .divider {
  height: 0;
  overflow: hidden;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.dropdown-menu {
  padding: 0;
}

/* Responsive Styles */
@media (max-width: 1023px) {

  .mobile-toggle-wrapper {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  header .desktop-nav {
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo img {
    height: 80px;
    width: 130px;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 38px;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 352px;
    background: #ffffff;
    height: 100vh;
    z-index: 50;
    overflow-y: auto;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav-links .mobile-menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding: 16px 24px;
  }

  .mobile-nav-links li {
    display: block;
    width: 100%;
  }

  .mobile-nav-links > li:not(.mobile-menu-header) {
    padding: 0 24px;
  }

  .mobile-nav-links a {
    padding: 8px 12px;
    font-size: 16px;
    line-height: 28px;
    border-radius: 8px;
    display: block;
  }

  .mobile-nav-links > li:not(.mobile-menu-header) a:hover {
    background: #f9fafb;
  }

  .mobile-nav .mobile-book-now {
    display: block;
    padding: 24px;
  }

  .dropdown-main-nav {
    position: static;
    margin: 8px 0;
    background: transparent;
    text-align: left;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
  }

  .dropdown-main-nav li {
    padding: 0;
  }

  .dropdown-main-nav a {
    color: #111827;
    padding: 8px 12px 8px 36px;
    font-size: 14px;
    line-height: 28px;
    border-radius: 8px;
  }

  .dropdown-main-nav a:hover {
    background: #f9fafb;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-bottom .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  div#content-wrapper {
    margin-top: 32px;
  }
}

@media (max-width: 639px) {
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {
  body > .container {
    width: 100%;
  }
}

@media (min-width: 992px) {
  body > .container {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  body > .container {
    width: 100%;
  }
}
