/** Shopify CDN: Minification failed

Line 13:14 Expected ")" to end URL token
Line 21:14 Expected ")" to end URL token
Line 29:14 Expected ")" to end URL token

**/
/* Voyage Theme Styles */
/* CSS Variables for colors are now set dynamically in theme.liquid from theme settings */
/* Keeping warm-brown variables as they are not theme settings */
@font-face {
  font-family: 'MerriweatherHeading';
  src: url({{ 'Merriweather_heading.ttf' | asset_url }}) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MerriweatherSubheading';
  src: url({{ 'Merriweather_subheading.ttf' | asset_url }}) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MerriweatherBody';
  src: url({{ 'Merriweather_text.ttf' | asset_url }}) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --warm-brown: #8B6F47;
  --warm-brown-dark: #6B5735;
}

body {
  font-family: 'MerriweatherBody', 'Merriweather', Georgia, serif;
  background-color: var(--white);
}

/* Navigation Styles - Structural only, appearance controlled by header options */
.logo-two-line {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 400;
}

.logo-line1,
.logo-line2 {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-line1 {
  margin-bottom: 0;
}

.logo-line2 {
  margin-top: 0;
}

/* Navigation transition effects - kept for smooth interactions */
.nav-link {
  transition: color 0.3s;
}

.dropdown-item {
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: var(--button-bg-color, var(--primary-orange));
  border-color: var(--button-border-color, var(--primary-orange));
  border-style: var(--button-border-style, solid);
  border-width: var(--button-border-width, 1px);
  color: var(--button-text-color, #FFFFFF);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--button-hover-bg-color, var(--light-orange));
  border-color: var(--button-hover-border-color, var(--light-orange));
  border-style: var(--button-hover-border-style, solid);
  border-width: var(--button-hover-border-width, 1px);
  color: var(--button-hover-text-color, #FFFFFF);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 100px 0;
  text-align: center;
}

.hero-style2 {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
}

.hero-style4 {
  background: linear-gradient(rgba(255, 107, 53, 0.9), rgba(255, 140, 97, 0.9));
}

/* Glow Deck Hero Style */
.hero-glow {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-video:not(.hero-video-ready) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.hero-video.hero-video-ready {
  opacity: 1;
  visibility: visible;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  
  .hero-video-mobile {
    display: block;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #000;
  }
  
  .hero-section.hero-glow.hero-mobile-video-fit {
    min-height: var(--hero-mobile-video-height, var(--hero-mobile-height-setting, calc(var(--vh, 1vh) * 70))) !important;
    height: var(--hero-mobile-video-height, var(--hero-mobile-height-setting, calc(var(--vh, 1vh) * 70))) !important;
  }
}

.hero-glow-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0;
}

.hero-glow-title {
  /* Typography styles are now applied via inline styles from theme settings */
  margin: 0;
  text-align: center;
  position: relative;
}

.btn-glow-cta {
  font-family: 'MerriweatherHeading', 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--button-text-color, #FFFFFF) !important;
  background-color: var(--button-bg-color, #FF6B35) !important;
  border-color: var(--button-border-color, var(--button-bg-color, #FF6B35)) !important;
  border-style: var(--button-border-style, solid) !important;
  border-width: var(--button-border-width, 1px) !important;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10vh;
    position: relative;
    z-index: 1;
}

.btn-glow-cta:hover {
  color: var(--button-hover-text-color, #FFFFFF) !important;
  background-color: var(--button-hover-bg-color, var(--button-bg-color, #FF8C61)) !important;
  border-color: var(--button-hover-border-color, var(--button-hover-bg-color, var(--button-bg-color, #FF8C61))) !important;
  border-style: var(--button-hover-border-style, var(--button-border-style, solid)) !important;
  border-width: var(--button-hover-border-width, var(--button-border-width, 1px)) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-glow-cta:focus,
.btn-glow-cta:active {
  color: var(--button-hover-text-color, #FFFFFF) !important;
  background-color: var(--button-hover-bg-color, var(--button-bg-color, #FF8C61)) !important;
  border-color: var(--button-hover-border-color, var(--button-hover-bg-color, var(--button-bg-color, #FF8C61))) !important;
  border-style: var(--button-hover-border-style, var(--button-border-style, solid)) !important;
  border-width: var(--button-hover-border-width, var(--button-border-width, 1px)) !important;
}

.hero-title {
  /* Heading styles are now applied via inline styles from theme settings */
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  /* Subheading styles are now applied via inline styles from theme settings */
  margin-bottom: 2rem;
}

/* Section Title - Generic utility class */
.section-title {
  /* Heading styles should be applied via inline styles from theme settings */
  margin-bottom: 3rem;
  text-align: center;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.page-title {
  /* Heading styles are now applied via inline styles from theme settings */
  margin-bottom: 1rem;
}

.page-subtitle {
  /* Subheading styles are now applied via inline styles from theme settings */
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
}

.booking-tabs {
  border-bottom: 2px solid var(--cream);
  margin-bottom: 3rem;
}

.booking-tabs .nav-link {
  color: #666;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 2rem;
  font-weight: 600;
}

.booking-tabs .nav-link.active {
  color: var(--primary-orange);
  border-bottom-color: var(--primary-orange);
  background-color: transparent;
}

.booking-form {
  background-color: var(--cream);
  border-radius: 2px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Footer styles are now controlled by the footer section settings */
/* Removed hardcoded footer styles to allow section-based customization */

/* Responsive */
@media (max-width: 768px) {
  /* Typography font sizes are controlled by theme settings */
  .hero-glow-content {
    gap: 2rem;
  }
}

.logo-image {
  max-height: 50px;
  width: auto;
}

/* Booking Calendar Section */
.booking-calendar-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'MerriweatherBody', 'Merriweather', Georgia, serif;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.calendar-month-year {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  flex-grow: 1;
}

.calendar-nav-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.calendar-nav-arrow:hover {
  opacity: 0.7;
}

.calendar-nav-arrow:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}

.calendar-nav-arrow svg {
  width: 24px;
  height: 24px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.calendar-weekdays span {
  padding: 10px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  min-height: 180px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day.empty {
  background-color: #f0f0f0;
  border: 1px dashed #e0e0e0;
  box-shadow: none;
}

.calendar-day.has-event {
  border-color: #8B6F47;
  cursor: pointer;
}

.calendar-day.has-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.day-number {
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 2px;
}

.event-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 2px;
}

.event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.calendar-day.has-event:hover .event-image-wrapper img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .calendar-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .calendar-month-year {
    width: 100%;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .calendar-nav-arrow {
    padding: 5px;
  }

  .calendar-day {
    min-height: 120px;
    padding: 5px;
  }

  .day-number {
    font-size: 1rem;
    top: 5px;
    right: 5px;
    padding: 1px 4px;
  }
}

@media (max-width: 480px) {
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    min-height: 100px;
  }

  .calendar-month-year {
    font-size: 1.5rem;
  }

  .calendar-weekdays span {
    font-size: 0.85rem;
    padding: 8px 0;
  }
}

