/* ----------------------
   GLOBAL STYLES
---------------------- */
body {
    margin: 0;
    font-family: 'Arial', Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ----------------------
   HEADER & NAVIGATION
---------------------- */
header {
    background: linear-gradient(90deg, #5a0000, #8B0000);
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    position: relative;
    z-indez: 1000;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}

header h1 {
    margin: 0;
    text-align: center;
    font-size: 32px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 10px;
}
/* ----------------------
   SOCIAL MEDIA ICONS IN FOOTER
---------------------- */
footer .social-media {
    text-align: center;
    margin-top: 10px;
}

footer .social-media a {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.2s;
}

footer .social-media a img {
    width: 28px; /* adjust size as needed */
    height: auto;
}

footer .social-media a:hover {
    transform: scale(1.1); /* subtle zoom on hover */
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f4c542;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    height: 500px;
    background-image: url('../images/hero-default.jpg'); /* fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* =========================
   PAGE-SPECIFIC HERO IMAGES
========================= */

body.page-home .hero {
    background-image: url('../images/hero-home.jpg');
}

body.page-performances .hero {
    background-image: url('../images/hero-performances.jpg');
}

body.page-contact .hero {
    background-image: url('../images/hero-contact.jpg');
}

body.page-lessons .hero {
    background-image: url('../images/hero-lessons.jpg');
}


body.page-about .hero {
    background-image: url('../images/hero-competition.jpg');
}

body.page-archive .hero {
    background-image: url('../images/hero-competition.jpg');
}

body.page-beginner .hero {
    background-image: url('../images/hero-competition.jpg');
}

body.page-christmas .hero {
    background-image: url('../images/hero-christmas.jpg');
}

body.page-competition .hero {
    background-image: url('../images/hero-competition.jpg');
}

body.page-cues .hero {
    background-image: url('../images/hero-home.jpg');
}

body.page-lessoninquiry .hero {
    background-image: url('../images/hero-competition.jpg');
}

body.page-misc .hero {
    background-image: url('../images/hero-home.jpg');
}

body.page-scccue .hero {
    background-image: url('../images/hero-home.jpg');
}

body.page-thankyou .hero {
    background-image: url('../images/hero-competition.jpg');
}

/* =========================
   MOBILE RESPONSIVE HERO
========================= */

@media (max-width: 768px) {

    .hero {
        height: 300px;
        background-image: url('../images/hero-default-mobile.jpg');
    }

    body.page-home .hero {
    background-image: url('../images/hero-home-mobile.jpg');
    }

    body.page-performances .hero {
    background-image: url('../images/hero-performances-mobile.jpg');
    }

    body.page-contact .hero {
    background-image: url('../images/hero-contact-mobile.jpg');
    }

    body.page-lessons .hero {
    background-image: url('../images/hero-lessons-mobile.jpg');
    }


    body.page-about .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }

    body.page-archive .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }

    body.page-beginner .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }

    body.page-christmas .hero {
    background-image: url('../images/hero-christmas-mobile.jpg');
    }

    body.page-competition .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }

    body.page-cues .hero {
    background-image: url('../images/hero-home-mobile.jpg');
    }

    body.page-lessoninquiry .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }

    body.page-misc .hero {
    background-image: url('../images/hero-home-mobile.jpg');
    }

    body.page-scccue .hero {
    background-image: url('../images/hero-home-mobile.jpg');
    }

    body.page-thankyou .hero {
    background-image: url('../images/hero-competition-mobile.jpg');
    }
}
/* ----------------------
   BUTTONS
---------------------- */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #5a0000, #8B0000);
    color: white;
    padding: 12px 25px;
    margin: 10px 5px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn.secondary {
    background: #f4c542;
    color: #000;
}

/* ----------------------
   CONTENT SECTIONS
---------------------- */
.content {
    padding: 60px 0;
    text-align: center;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

/* ----------------------
   FOOTER
---------------------- */
/* ----------------------
   SOCIAL MEDIA ICONS IN FOOTER
---------------------- */
footer .social-media {
    text-align: center;
    margin-top: 10px;
}

footer .social-media a {
    display: inline-block;
    margin: 0 6px;
    transition: transform 0.2s;
}

footer .social-media a img {
    width: 28px;
    max-width: 28px;
    height: auto;
}

/* Hover effect (desktop only feel) */
footer .social-media a:hover {
    transform: scale(1.1);
}
/* ----------------------
   MOBILE ADJUSTMENT
---------------------- */
@media (max-width: 768px) {
    footer .social-media a img {
        width: 22px;
        max-width: 22px;
    }
}

/* ----------------------
   RESPONSIVE
---------------------- */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 8px 0;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .herobell-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .herobell-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ----------------------
   PERFORMANCE CARDS
---------------------- */
.performance-card {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.performance-card:hover {
    transform: translateY(-3px);
}

.performance-card h3 {
    margin-top: 0;
    color: linear-gradient(90deg, #5a0000, #8B0000);
}

.performance-card p {
    margin: 8px 0;
}

.performance-card a.btn.secondary {
    text-decoration: none;
    font-weight: bold;
}
/* Year Section */
.performance-year {
    margin-bottom: 60px;
}

.year-heading {
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ddd;
}

/* Individual Performance */
.performance-item {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.performance-item h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

.dance-list {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

/* Clean text link style instead of button */
.video-link {
    text-decoration: none;
    font-weight: 600;
    color: #b22222; /* or your theme red */
}

.video-link:hover {
    text-decoration: underline;
}

/* ----------------------
   CUE SHEET DANCE LIST
---------------------- */

.cue-list {
    list-style: none;
    padding: 0;
}

.cue-list li {
    margin: 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.cue-list li strong {
    font-size: 18px;
    color: #1f2f46;
}

.cue-list a {
    text-decoration: none;
    color: #1f2f46;
    font-weight: 500;
}

.cue-list a:hover {
    color: #f4c542;
}

/* ----------------------
   UNIFIED CUE SHEET LIST STYLING
---------------------- */
.content ul {
    list-style: none;       /* removes bullets for all cue sheet lists */
    padding: 0;
    margin: 20px 0 40px 0;
}

.content ul li {
    margin: 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;  /* subtle separation between items */
}

.content ul li strong {
    font-size: 18px;
    color: #1f2f46;
}

.content ul li a {
    text-decoration: none;
    color: #1f2f46;
    font-weight: 500;
}

.content ul li a:hover {
    color: #f4c542;
}

/* ----------------------
   CUE SHEET DIVISION HEADINGS
---------------------- */
.content .cue-list + h2,
.content h2 {
    margin-top: 60px;
    font-size: 28px;
    color: #1f2f46;
    border-bottom: 3px solid #f4c542;
    padding-bottom: 8px;
    display: inline-block;
}

.dance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.dance-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #004aad;
}

.dance-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dance-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .dance-links {
        margin-top: 5px;
    }
}
/* ===============================
   VIDEO PAGE STYLES
================================= */

.video-page {
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    background: #ffffff;
    color: #000;
    max-width: 800px;
    margin: auto;
}

.video-page h1 {
    color: #C41E3A;
    margin-bottom: 30px;
}

.video-link {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a73e8;
    text-decoration: none;
}

.video-link:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 40px;
    font-size: 16px;
}

.back-link a {
    color: #1a73e8;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}
.cue-list.collapsed {
    max-height: 0;
    overflow: hidden;
}

.cue-list {
    transition: max-height 0.4s ease;
}

.highlight {
    background: yellow;
    font-weight: bold;
}

.cue-controls {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===============================
   FOR ARCHIVE PAGE
================================= */
/* Collapsible sections */
.cue-list.collapsed {
    display: none;
}

/* Letter headers */
.content h2 {
    cursor: pointer;
    margin-top: 30px;
}

/* Search box spacing */
#searchInput {
    margin-bottom: 20px;
}

/* Expand / Collapse buttons */
.archive-controls {
    margin: 20px 0;
}

.archive-controls button {
    padding: 8px 12px;
    margin-right: 10px;
    cursor: pointer;
}
<style>
h2 .count {
    font-size: 0.55em !important;
    vertical-align: sub !important;
}
h2 .letter-count {
    font-size: 0.55em;
    font-weight: normal;
    vertical-align: sub;
    color: #666;
}
</style>

.contact-form {
    max-width: 600px;
    margin-top: 30px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    margin-top: 20px;
}

/* Hide honeypot field */
.honeypot {
    display: none;
}

/* Form Styling Cleanup */

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

/* Fix textarea specifically */
form textarea {
    min-height: 140px;
    resize: vertical;
    vertical-align: bottom;
}
