:root {
    --logo-width: 200px;
    --hero-height: min(80vh, 600px);
    --hero-mobile-height: 50vh;
    --hero-left-height: min(80vh, 800px);
    --hero-left-bg: rgba(0, 0, 0, 0.75);
    --crest-max-width: 180px;
    --pulse-duration: 3s;
    --btn-transition-duration: 0.3s;
}

/* Keep hero sizing but allow inline styles to reference variables */
#hero {
    height: var(--hero-height);
}

@media (max-width: 768px) {
    #hero {
        height: var(--hero-mobile-height);
    }
}

/* Stop anything from overflowing horizontally */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Prevent elements from exceeding screen width */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Reset Bootstrap row margin behaviour */
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* If you used 100vw anywhere, replace it with 100% */
[style*="100vw"] {
    width: 100% !important;
}

/* Ensure absolute-positioned overlays don't push the layout */
[style*="position: absolute"] {
    max-width: 100%;
}

/* Desktop table */
  .weekly-table th,
  .weekly-table td {
    width: 14.28%;
    min-width: 140px;
    background-color: #fff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1rem;
    transition: all 0.2s ease;
  }

  .weekly-table th {
    background-color: #f9f9f9;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  .weekly-table td:hover {
    background-color: #cfcece;
    transform: translateY(-2px);
  }

  /* Mobile cards */
  #weekly-events .card {
    background-color: #fff;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
  }

  #weekly-events .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  }

  #weekly-events .card-body {
    padding: 1rem 1.25rem;
  }

  #weekly-events small {
    color: #6c757d;
  }



/* Pulse keyframes kept in head so inline animation can reference it */
@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px gold);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px gold);
    }
}

/* Solid HR helper for repeated HR styling */
.hr-solid {
    border: 1px solid;
    opacity: 1;
}

@media (min-width: 992px) {

    /* Bootstrap lg breakpoint */
    #drinksCarousel img {
        max-height: 600px;
    }


}