body {
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E9CC86;
}

header {
    background: #EDAF66;
    color: #ffffff;
    /*padding: 20px 0; */
    text-align: center;
    position: relative;
}

.header-badges {
    display: flex;
    gap: 10px;
    justify-content: center;   /* centered under the logo on desktop */
    align-items: center;
    margin-top: 10px;
}

/* badge image styling */
.header-badge {
    height: 56px;      /* adjust size to taste */
    width: auto;
    display: inline-block;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Mobile: keep badges below the header image (not off to the right) */
@media (max-width: 768px) {
    .header-badges {
        position: static;           /* ensure normal flow under header image */
        margin-top: 12px;
        flex-direction: row;        /* keep icons side-by-side; use column if you prefer stacked */
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .header-badge {
        height: 44px; /* slightly smaller on mobile */
    }
}

h1 {
    margin: 0;
}

.main-header {
    background: #EDAF66;
    text-align: center;
    padding: 0;
}

.header-image {
    max-height: 220px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.secondary-header {
    background: #EDAF66;
    color: #fff;
    text-align: center;
    margin-top: 0;
    
}

.secondary-header h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 1px;
}

nav {
    margin: 0px 0;
    margin-bottom: 0rem; 
    margin-top: 0px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

footer {
    background: #EDAF66;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 1rem;
}

.main-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.main-banner img {
    width: 100%;
    max-width: 1200px; /* Adjust to your site's content width */
    height: auto;
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.07); /* Optional: subtle shadow */
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px; /* Optional: match your site width */
    margin: 0 auto;
    padding: 10px 20px;
}

.loros-footer-img {
    height: 100px; /* Adjust as needed */
    width: auto;
    display: block;
}

h2 {
    color: #35424a;
}

p {
    line-height: 1.6;
}

/* Indent main content */
main {
    margin: 0 auto;
    max-width: 800px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Horizontal navigation bar */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* gap: 2rem; */
    justify-content: center;
    background: #588C7F;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 0.5rem;
    display: block;
    transition: background 0.2s;
}

nav ul li a:hover {
    background: #444;
    border-radius: 4px;
}


/* Center image utility */
.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.center-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Hide hamburger and sidebar by default */
.nav-toggle {
    display: none;
    position: absolute;
    top: 30px;
    left: 20px;
    background: #588C7F;
    color: #fff;
    border: none;
    font-size: 2rem;
    z-index: 1001;
    cursor: pointer;
}

.sidebar-nav {
    display: none;
}

@media (max-width: 768px) {
    
    nav ul {
        display: none; /* Hide horizontal nav */
    }
    .nav-toggle {
        display: block;
    }
    .sidebar-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100%;
        background: #588C7F;
        padding-top: 60px;
        transition: left 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    .sidebar-nav.open {
        left: 0;
    }
    .sidebar-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    .sidebar-nav li {
        list-style: none;
        margin: 0;
    }
    .sidebar-nav a {
        display: block;
        padding: 1rem 2rem;
        color: #fff;
        border-bottom: 1px solid #588C7F;
        text-decoration: none;
    }
    .sidebar-nav a:hover {
        background: #588C7F;
    }

}

/* Hamburger to cross transition */
    .nav-toggle.open::before {
        content: "✕";
    }
    .nav-toggle::before {
        content: "☰";
    }
    .nav-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        position: absolute;
        top: 30px;
        left: 20px;
        z-index: 1100;
        cursor: pointer;
    }


.image-text-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.row-image {
    width: 180px;
    max-width: 40vw;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.row-text {
    flex: 1;
}

/* Responsive: stack on small screens */
@media (max-width: 700px) {
    .image-text-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .row-image {
        width: 100%;
        max-width: 90vw;
    }
}

/* Image on right, text on left */
.image-text-row-reverse {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-direction: row-reverse;
}

@media (max-width: 700px) {
    .image-text-row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 0;
    color: #35424a;
    outline: none;
}

.faq-question .chevron {
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0.5rem 0 0 0;
    color: #222;
    font-weight: normal;
}

/* Countdown styling */
.countdown-container {
    text-align: center;
    background: #EDAF66;
}

#countdown {
    font-size: 1.2rem;
    font-weight: bold;
    
    
}

nav ul li a.active,
.sidebar-nav ul li a.active {
    background: #fff;
    color: #EDAF66;
    border-radius: 4px;
    font-weight: bold;
}

/* Cookie banner styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2000;
    font-size: 1rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}
.cookie-banner p {
    margin: 0 0 0.5rem 0;
    text-align: center;
}
.cookie-banner button {
    margin: 0 0.5rem;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 4px;
    background: #EDAF66;
    color: #222;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-banner button:hover {
    background: #fff;
}

/* Lineup Tiles */
.lineup-tiles {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.lineup-tile {
    text-decoration: none;
    color: inherit;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.lineup-tile:hover {
    transform: translateY(-6px) scale(1.03);
}

.tile-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}

.tile-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 1.2rem;
    font-weight: bold;
    transition: opacity 0.3s;
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.lineup-tile:hover .tile-overlay,
.lineup-tile:focus .tile-overlay {
    opacity: 1;
}

.tile-year {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #EDAF66;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .lineup-tiles {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .lineup-tile,
    .tile-image-container {
        width: 90vw;
        max-width: 320px;
        height: auto;
    }
    .tile-image-container {
        height: 50vw;
        max-height: 320px;
    }
}

/* Gallery grid */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}
.gallery-thumb {
    width: 180px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s;
}
.gallery-thumb:hover {
    transform: scale(1.05);
}

/* Modal styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gallery-modal.open {
    display: flex;
}
.gallery-modal-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.gallery-close, .gallery-prev, .gallery-next {
    color: #fff;
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    padding: 0 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}
.gallery-close {
    top: 30px;
    right: 40px;
    font-size: 2em;
    transform: none;
}
.gallery-prev {
    left: 40px;
}
.gallery-next {
    right: 40px;
}
@media (max-width: 600px) {
    .gallery-thumb { width: 100px; height: 70px; }
    .gallery-modal-img { max-width: 98vw; max-height: 60vh; }
    .gallery-prev, .gallery-next { font-size: 2em; }
}

/* Add to your styles.css for styling the social icons */
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    transition: opacity 0.2s;
}
.social-icon:hover {
    opacity: 0.7;
}

/* Add to your styles.css */
.letter-component {
    max-width: 600px;
    margin: 40px auto;
    background: #fffbea;
    border: 1.5px solid #e0d6b9;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    padding: 32px 28px;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.15em;
    line-height: 1.7;
    position: relative;
}
.letter-component::before {
    content: "";
    position: absolute;
    top: 18px; left: 18px; right: 18px; bottom: 18px;
    border: 1px dashed #d2c7a3;
    border-radius: 6px;
    pointer-events: none;
}

/* Add to your styles.css for a styled gallery link */
.view-gallery-link {
    display: inline-block;
    background: #ffe066;
    color: #222;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.view-gallery-link:hover {
    background: #ffd23f;
    color: #000;
}


  button {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
  }

@media (max-width: 768px) {
    /* reduce logo width so it doesn't get covered by the burger */
    .header-image {
        max-width: calc(100% - 88px); /* leaves room for the burger icon; tweak 88px if needed */
        height: auto;
        max-height: 160px; /* slightly smaller on mobile */
        margin: 8px auto 0;
        display: block;
    }

    /* keep hamburger clearly on top */
    .nav-toggle {
        z-index: 1200;
    }

    /* optional: give header a small left padding so content doesn't sit under the burger */
    header {
        padding-left: 20px; /* increase if you need more spacing */
        box-sizing: border-box;
    }
}

/* Horizontal scrolling announcement banner */
.scroll-banner {
  width: 100%;
  overflow: hidden;
  background: #C85A11; /* bolder colour - change if desired */
  color: #fff;
  border-radius: 6px;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.scroll-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* ensure content sits on single line */
  white-space: nowrap;
  /* keep the track wide so we can move it left */
  will-change: transform;
  animation: scroll-left 20s linear infinite;
}

/* duplicate block containing the text; duplicated in HTML for seamless loop */
.scroll-content {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 1rem;
}

/* pause on hover/focus for usability */
.scroll-banner:hover .scroll-track,
.scroll-banner:focus-within .scroll-track {
  animation-play-state: paused;
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-track {
    animation: none;
  }
}

/* animation moves the duplicated content left by 50% of the track width */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .scroll-content { font-size: 0.95rem; padding: 0.5rem 0.8rem; }
  .scroll-banner { border-radius: 4px; margin: 0.75rem 0; }
}

