:root {
	--orange: #d9651a;
	--orange-dark: #b44f10;
	--orange-soft: #fbe4d3;
	--text-dark: #222222;
	--text-muted: #555555;
	--bg-light: #ffffff;
	--bg-section: #faf7f4;
	--footer-bg: #d9651a;
	--border-light: #e3e3e3;
	--max-width: 1100px;
	--radius: 6px;
	--shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.page-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* HEADER */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border-light);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 0;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav-menu {
	display: flex;
	gap: 1.25rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.nav-menu a {
	position: relative;
	padding-bottom: 0.25rem;
	color: var(--text-dark);
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--orange);
	transition: width 0.2s ease-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}

.nav-menu a.active { 
    border-bottom: 0.25px solid var(--orange);
}

.nav-logo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: 260px;
}

.nav-logo img {
	height: 80px;
	width: auto;
}

.nav-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 0.5rem; 
    
} 

.nav-toggle span { 
    width: 26px; 
    height: 3px; 
    background-color: var(--text-dark); 
    border-radius: 2px; 
    transition: all 0.3s ease; 
}

/* When menu is open, animate bars */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* HERO */
.hero {
	background: radial-gradient(circle at top, #fbe4d3 0, #d9651a 55%, #d9651a 100%);
	color: #ffffff;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 4rem 0 3.5rem;
}

.hero-title {
	font-family: 'Limelight', cursive font-size: clamp(2.4rem, 4vw, 3.2rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-subtitle {
	margin-top: 0.75rem;
	font-size: 1.05rem;
	max-width: 30rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out;
	white-space: nowrap;
}

.btn-primary {
	background-color: #ffffff;
	color: var(--orange-dark);
	box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.08);
}

/* FEATURE CARDS */
.feature-strip {
	background-color: var(--bg-light);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	margin-top: -2.2rem;
	border-radius: var(--radius);
}

.feature-inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
}

.feature-card {
	border-radius: var(--radius);
	border: 1px solid var(--border-light);
	padding: 1.1rem 1.1rem 1.2rem;
	/*background-color: #ffffff;*/
	background-color: var(--bg-section);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	transition: box-shadow 0.15s ease-out, transform 0.15s ease-out, border-color 0.15s ease-out;
}

.feature-card:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-2px);
	border-color: rgba(217, 101, 26, 0.4);
}

.feature-icon {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background-color: var(--orange-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--orange-dark);
}

.feature-title {
	font-weight: 700;
	font-size: 0.98rem;
}

.feature-text {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* MAIN SECTION */
main {
	flex: 1;
}

.section {
	padding: 2.5rem 0;
}

.section-alt {
	background-color: var(--bg-section);
}

.section-flex {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
}

.section-heading {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.section-body {
	font-size: 0.98rem;
	color: var(--text-muted);
	/*max-width: 34rem;*/
	width: 100%;
	
}

.section-body p+p {
	margin-top: 0.75rem;
}

.section-tag {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.75rem;
	color: var(--orange-dark);
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.section-image-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.section-image-placeholder {
	background: linear-gradient(135deg, #f3c29a, #d9651a);
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
}

/* SHOWS / AUDITIONS GRID (placeholder structure) */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.75rem;
}

.card-outline {
	border-radius: var(--radius);
	border: 1px solid var(--border-light);
	padding: 1.25rem 1.3rem;
	background-color: #ffffff;
}

.card-outline h3 {
	font-size: 1.05rem;
	margin-bottom: 0.4rem;
}

.card-outline p {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/*About/Board */
.membercard-outline {
	border-radius: var(--radius);
	border: 1px solid var(--border-light);
	padding: 1.25rem 1.3rem;
	/*background-color: #ffffff;*/
	background-color: var(--bg-section);
}

.membercard-outline h3 {
	/*margin-bottom: 0.4rem;*/
	margin-top: 0.6rem;
	text-align: center;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.063rem;
    display: block;
}

.membercard-outline p {
    margin-top: 0.6rem;
	/*font-size: 1.0rem;*/
	color: var(--text-muted);
	font-weight: 500;
    text-align: center;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.0;
    letter-spacing: 0.05rem;
    font-family: var(--global-body-font-family);
    display: block;

}

/*Previous Shows*/
.fade-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.fade-carousel .carousel-track {
    position: relative;
}

.fade-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-carousel .carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 4px;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.show-list {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 15px;
}

.show-item {
    padding: 8px 0;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #222;
    font-weight: 500;
}

.show-item span.year {
    color: #ff6a00; /* your burnt orange accent */
    font-weight: 600;
    margin-right: 6px;
}

.show-columns { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

/*SHOW TICKETS*/
.show-announcement {
    max-width: 900px;
    margin: 40px auto;
    /*padding: 20px;*/
}

.show-poster img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.show-details {
    margin-top: 5px;
}

.show-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.show-date,
.show-location,
.show-times {
    font-size: 1.1rem;
    margin: 6px 0;
}

.show-times-list {
    font-size: 1.1rem;
    margin: 6px 0;
    padding-left: 40px;
}

.ticket-button {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.ticket-button:hover {
    background: #d45a00;
}

.show-description {
    margin-top: 20px;
    line-height: 1.6;
}

/*SCHOLARSHIP*/

.scholarship-box {
    background: #ffffff;
    border: 1px solid #e5dfd8;
    margin-top: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.scholarship-box h2 {
    font-size: 1.0rem;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #333;
}

.scholarship-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.scholarship-box li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.scholarship-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ff7a1a; /* warm orange */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.scholarship-btn:hover {
    background: #d96412;
}

.scholarship-contact {
    margin-top: 30px;
    font-size: 1rem;
}

/*AUDITIONS*/

.auditions-box {
    background: #ffffff;
    border: 1px solid #e5dfd8;
    margin-top: 20px;
    padding: 20px 30px;
    padding-top: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.auditions-box h2 {
    font-size: 1.0rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.auditions-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.auditions-box li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.auditions-link {
    color: #ff7a1a;
    font-size: 1.05rem;
    font-weight: 600;
}

.auditions-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    margin-right: 20px;
    background: #ff7a1a; /* warm orange */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.auditions-btn:hover {
    background: #d96412;
}

.auditions-contact {
    margin-top: 30px;
    font-size: 1rem;
}

/*CONTACT*/

.contact-box {
    background: #ffffff;
    border: 1px solid #e5dfd8;
    margin-top: 20px;
    padding: 25px 30px;
    padding-top: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-box h2 {
    font-size: 1.0rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.contact-box li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    margin-right: 20px;
    background: #ff7a1a; /* warm orange */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.contact-btn:hover {
    background: #d96412;
}

.contact-contact {
    margin-top: 30px;
    font-size: 1rem;
}
/* FOOTER */
footer {
	background-color: var(--footer-bg);
	color: #ffffff;
	padding: 2.5rem 0 2rem;
	margin-top: 2rem;
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 2rem;
	font-size: 0.9rem;
}

.footer-heading {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.footer-text {
	color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
}

.footer-social {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.4rem;
}

.footer-social a {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.footer-bottom {
	margin-top: 1.5rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    /* HEADER LAYOUT */
    .header-inner {
        position: relative;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    /* Hamburger always visible */
    .nav-toggle {
        display: flex !important;
        position: absolute;
        left: 1rem;
        top: 1rem;
        z-index: 300;
    }

    /* Logo centered */
    .nav-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-logo img {
        height: 65px;
    }

    /* Hide menu until opened */
    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 1rem;
        background: var(--bg-light);
        border-top: 1px solid var(--border-light);
        text-align: center;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-menu a {
        padding: 0.75rem 0;
        font-size: 1.05rem;
    }

    /* MAIN LAYOUT */
    .section-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .membercard-outline img {
    display: block;
    margin: 0 auto;
    border-radius: var(--radius);
    max-width: 160px; /* optional, keeps images consistent */
    }

    /* Buttons */
    .btn,
    .ticket-button,
    .scholarship-btn,
    .auditions-btn,
    .contact-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1.05rem;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 900px) {

    /* Center the logo on mobile/tablet */
    .nav-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 2;
        margin-top: 0.25rem;
    }

    .nav-logo img {
        height: 65px;
        width: auto;
    }

    /* Hamburger stays top-left */
    .nav-toggle {
        display: flex !important;
        position: absolute;
        left: 1rem;
        top: 1rem;
        z-index: 300;
        order: 1;
    }

    /* Menu stays below logo */
    .nav-left {
        width: 100%;
        order: 3;
    }
}

@media (max-width: 900px) {

    /* Turn header into a 3-column grid */
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0.75rem 0;
        position: relative;
    }

    /* Hamburger sits in the left column */
    .nav-toggle {
        grid-column: 1;
        justify-self: start;
        display: flex !important;
        z-index: 300;
    }

    /* Logo sits perfectly centered in column 2 */
    .nav-logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        justify-content: center;
        width: auto;
    }

    .nav-logo img {
        height: 65px;
        width: auto;
    }

    /* Menu sits below the grid */
    .nav-left {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        background: var(--bg-light);
        border-top: 1px solid var(--border-light);
        width: 100%;
        text-align: center;
    }

    .nav-menu.open {
        display: flex !important;
    }
}

@media (max-width: 600px) {

    /* Typography */
    body {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    h1, .section-heading, .show-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.35rem;
        margin-top: 1.25rem;
    }

    p, li {
        font-size: 1.05rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* HERO */
    .hero-inner {
        padding: 2.5rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    /* Feature cards */
    .feature-inner {
        padding: 1rem;
        gap: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    /* Show list */
    .show-columns {
        grid-template-columns: 1fr;
    }

    .show-item {
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .membercard-outline {
        text-align: center;
        padding: 1.5rem;
    }

    .membercard-outline img {
    display: block;
    margin: 0 auto;
    border-radius: var(--radius);
    max-width: 160px; /* optional, keeps images consistent */
    }


    /* Show announcement */
    .ticket-button {
        width: 100%;
        text-align: center;
    }

    .show-times-list {
        padding-left: 20px;
    }

    /* Scholarship / Auditions / Contact boxes */
    .scholarship-box,
    .auditions-box,
    .contact-box {
        padding: 20px;
    }

    .scholarship-btn,
    .auditions-btn,
    .contact-btn {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    .footer-inner {
        gap: 1.25rem;
    }
}

@media (max-width: 900px) and (min-width: 601px) {

    /* Add breathing room to the whole layout */
    .container {
        padding: 0 1.25rem;
    }

    /* Header spacing */
    .header-inner {
        padding: 1rem 0;
    }

    /* Logo not touching the right edge */
    .nav-logo {
        padding-right: 1rem;
    }

    /* Menu not touching the left edge */
    .nav-left {
        padding-left: 1rem;
    }

    /* Menu links get more space */
    .nav-menu a {
        padding: 0.5rem 0.25rem;
    }

    /* Body sections get more breathing room */
    .section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}
