@charset "utf-8";
/* CSS Document */



#meet-the-musos .muso {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.muso__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%; /* optional circle crop */
}

@media (max-width: 600px) {
  #meet-the-musos .muso {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .muso__photo {
    margin: 0 auto 1rem;
    max-width: 150px;
  }
}





.table-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 20px auto;
}

/* Base table styling */
#Timetable {
    width: 100%;
    min-width: 650px;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    font-size: 16px;
    table-layout: auto;
}

/* Header styling */
#Timetable th {
    background: #e63946;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Cell styling */
#Timetable th,
#Timetable td {
    padding: 14px 16px;
    white-space: nowrap;
    word-break: keep-all;
    border-bottom: 1px solid #eee;
    box-sizing: border-box; /* IMPORTANT for Edge/Samsung */
}

/* Alternating row colours */
#Timetable tr:nth-child(even) {
    background: #fafafa;
}

/* Hover effect */
#Timetable tr:hover {
    background: #f1f1f1;
}

/* Caption styling */
#Timetable caption h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

/* Fix for Samsung Internet extra spacing */
#Timetable tr {
    height: auto;
}

.no-wrap {
    white-space: nowrap;
}






/* Container for 3 boxes classes*/
.class-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 0 20px;
}

/* Individual box */
.class-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: 1px solid #ddd;
}


/* Hover effect */
.class-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	border: 2px solid #e63946;
}


/* Silhouette image */
.class-box img {
    width: 80px;       /* display size */
    height: auto;
    margin-bottom: 15px;
	image-rendering: auto;
    opacity: 0.9;
}

/* Heading */
.class-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

/* Description */
.class-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.btn-class {
    display: inline-block;
    padding: 10px 22px;
    background: #c62839;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.25s ease;
}

.btn-class:hover {
    background: #a71f30;
}




/* Venue section container */
.venue-container {
  display: grid;
  gap: 30px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-sizing: border-box;
}

/* Optional: force 1 column on very small screens */
@media (max-width: 400px) {
  .venue-container {
    grid-template-columns: 1fr;
  }
}

/* Individual venue card */
.venue-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Venue photo */
.venue-photo {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Map embed */
.venue-map {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Venue text */
.venue-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
}

.venue-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Button styling */
.btn-venue {
    display: inline-block;
    padding: 10px 22px;
    background: #c62839;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-venue:hover {
    background: #a71f30;
}





/* band gallery section */
.band-gallery {
  display: grid;
  gap: 15px;
  margin: 30px 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Tablet (iPad portrait) */
@media (max-width: 900px) {
  .band-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .band-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .band-gallery {
    grid-template-columns: 1fr;
  }
}

.band-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.band-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.band-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



/* Centered All Classes button */
.all-classes-wrapper {
    text-align: center;
    margin: 40px 0 50px;
}

/* Black button style */
.btn-class-black {
    display: inline-block;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}

.btn-class-black:hover {
    background: #333;
}

/* Schedule section layout */
.schedule-section {
    display: flex;
    justify-content: space-between;
    align-items: center; /* <-- vertical centering */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

/* Left side: title + button */
.schedule-left h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #333;
}

.schedule-left .btn-class {
    margin-top: 10px;
    display: inline-block;
}

/* Right side: paragraph */
.schedule-right p {
    max-width: 600px; /* adaptive width */
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive stacking */
@media (max-width: 768px) {

    .schedule-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .schedule-left h3 {
        text-align: center;
    }

    .schedule-right p {
        max-width: 90%;
        margin: 0 auto;
    }
}







/* Full-width social section */
.next-social-full {
    position: relative;
    width: 100%;
    min-height: 380px; /* adjust as needed */
    background: url('/images/band/Band-on-stage1-1200.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark gradient overlay */
.next-social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.35)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Content block */
.next-social-content {
    text-align: center;
    color: #fff;
    max-width: 600px;
}

.next-social-content h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.next-social-content p {
    margin: 6px 0 12px;
    font-size: 1.1rem;
}

/* Button styling (uses your existing class) */
.next-social-content .btn-class {
    margin-top: 10px;
}

/* Fade-in animation (text only) */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .next-social-full {
        min-height: 320px;
    }

    .next-social-content h2 {
        font-size: 1.8rem;
    }

    .next-social-content p {
        font-size: 1rem;
    }
}








/* Full-width centred block */
.email-signup {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.email-signup h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.email-signup p {
    margin-bottom: 25px;
    color: #555;
}

/* Email + button row */
.email-row {
    display: flex;
    justify-content: center;
    align-items: center;   /* <-- vertical centering */
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Email input */
.email-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
}

.email-input:focus {
    border-color: #000;
}

/* Subscribe button */
.subscribe-btn {
    padding: 10px 12px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;   /* prevents stretching */
    transition: background 0.25s ease;
}

.subscribe-btn:hover {
    background: #333;
}

/* Mobile stacking */
@media (max-width: 600px) {

    .email-row {
        flex-direction: column;
        align-items: center;   /* <-- centres both elements horizontally */
    }

    .email-input {
        max-width: 300px;      /* keeps it centred and tidy */
        width: 100%;
    }

    .subscribe-btn {
        width: auto;           /* <-- no full-width stretching */
        padding: 12px 22px;
    }
}






/* Footer Base */
.site-footer {
    background: #111;
    color: #eee;
    padding: 60px 20px 30px;
    font-size: 0.95rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
}

/* Column sizing */
.footer-col {
    flex: 1 1 140px; /* narrower columns */
}

.footer-col-signup {
    flex: 1.5 1 220px; /* slightly wider but still compact */
}

.footer-col-logo {
    flex: 1 1 160px;
    text-align: right;
}


/* Footer signup overrides */
.footer-signup {
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-signup p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

/* Align input + button perfectly */
.footer-signup .email-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Rectangular input + button */
.footer-signup .email-input,
.footer-signup .subscribe-btn {
    height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

/* Input style */
.footer-signup .email-input {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
}

/* Button style (match your site) */
.footer-signup .subscribe-btn {
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
}


.footer-signup .subscribe-btn:hover {
    background: #c72f3b;
}

/* Lists */
.footer-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    margin-bottom: 8px;
}

.footer-col-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-col-links a:hover {
    color: #fff;
}

/* Centre column 2 + 3 links */
.footer-col-links {
    text-align: center;
}

.footer-col-links ul {
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    list-style: none;
    margin-bottom: 8px;
}



/* Social Icons */
.footer-social {
    margin-top: 12px;
    display: flex;
    gap: 12px; /* space between icons */
    align-items: center;
}

.footer-social img {
    width: 24px;
    height: 24px;
	display: block;
    opacity: 0.85;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-social .inactive img {
    opacity: 0.4;
    cursor: default;
}

/* Logo */
.footer-col-logo img {
    max-width: 140px;
    opacity: 0.9;
}

.footer-col-logo img:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 800px) {
    .footer-inner {
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-col,
    .footer-col-signup,
    .footer-col-logo {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-col-logo {
        margin-top: 20px;
    }

    .footer-social {
        justify-content: center;
    }
}