/* Root background */
body.body-one {
  background-image: url('storeFront_img2.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* Container One */
#container-one {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Container Two */
#container-two {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 40px auto;
  max-width: 1200px;
  padding: 20px;
  display: block;
}

/* Logo */
.logo {
  display: flex;
  margin: 30px;
  align-items: center;
  justify-content: center;
  color: aliceblue;
  text-shadow: 4px 4px 4px black;
  background-color: #204161;
  filter: drop-shadow(0px 10px 10px black);
  border-radius: 4px;
}


/* Safari iOS Fix: Force GPU render on key containers */
.ios-fix .your-buttons-class,
.ios-fix .logo,
.ios-fix .header,
.ios-fix main {
  will-change: transform;
  transform: translateZ(0); /* Forces re-render */
}


.helloGalwayCityBTN .clickHighlight {
    color: #ffcc00; /* Galway gold highlight */
    font-weight: bold;
}


/* Events Button Styling */
.eventsButton .clickHighlight {
    color: #ffcc00; /* Galway gold highlight */
    font-weight: bold;
}

.helloGalwayCity {
  display: flex;
  align-items: left;
  margin: 20px;
  justify-content: left;
  filter: drop-shadow(0px 2px 2px );  
}

.helloGalwayCityBTN {
  border-radius: 10px;
  background-color: blue;
}

#helloGalwayCityBTN {
  border-radius: 10px;
  background-color: blue;
}


/* 🚀 Horizontal Sliding Button Bar — fully scrollable on ALL devices */
.horizontal-button-bar {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    background-color: #f2f2f2;
    padding: 10px 0;
    border-top: 2px solid #800000;
    border-bottom: 2px solid #800000;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* Smooth swipe on iOS */
}

.horizontal-button-bar:active {
    cursor: grabbing;
}

.button-strip {
    display: inline-flex;
    gap: 10px;
    padding: 0 10px;
    /* Force minimum width so swipe is always available */
    min-width: 1200px;
}

.button-strip button {
    background-color: #800000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.button-strip button:hover {
    background-color: #a00000;
}

/* Hide scrollbars for a cleaner look */
.horizontal-button-bar::-webkit-scrollbar {
    display: none;
}

.horizontal-button-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 🌀 Welcome Banner */
.welcome-banner {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 12px;
  margin: 10px auto 20px auto;
  text-align: center;
  border: 2px solid #800000;
  border-radius: 8px;
  max-width: 1000px;
  font-weight: bold;
  font-size: 1.1em;
  color: #204161;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  font-family: 'Lato', sans-serif;
  animation: bannerRipple 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* ✨ Button Glow Effect on Hover */
.button-strip button:hover {
  background-color: #a00000;
  box-shadow: 0 0 10px #ffcc00;
}

/* 🌊 Ripple Animation */
@keyframes bannerRipple {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}







