/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E95BAF;
    --primary-blue: #7BC6F5;
    --primary-green: #38E86B;
    --primary-purple: #6A3FC7;
    --text-dark: #1E1E1E;
    --text-light: #F8F6F2;
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light-blue {
    background-color: var(--primary-blue);
}

.bg-pink {
    background-color: var(--primary-pink);
    color: white;
}

.pink-text {
    color: var(--primary-pink);
}

.green-text {
    color: var(--primary-green);
    text-shadow: 5px 5px 20px rgba(84, 84, 84, .2);
}

.white-text {
    color: white;
}

/* --- TYPOGRAPHY --- */
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-white-pink {
    background-color: white;
    color: var(--primary-pink);
    border: 2px solid white;
}

.btn-white-pink:hover {
    background-color: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.btn-blue-small {
    background-color: var(--primary-blue);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
    border: none;
    text-decoration: none;
}

.btn-blue-small:hover {
    background-color: var(--primary-purple);
    color: white;
}

.btn-green-small {
    background-color: var(--primary-green);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
    border: none;
    text-decoration: none;
}

.btn-green-small:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-black {
    background-color: var(--text-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
}

.btn-black:hover {
    background-color: var(--primary-purple);
}

.btn-pink {
    background-color: var(--primary-pink);
    color: white;
    padding: 12px 35px;
}

.btn-pink:hover {
    background-color: var(--primary-purple);
}

.btn-pink-large {
    background-color: var(--primary-pink);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 4px;
}

.btn-pink-large:hover {
    background-color: var(--primary-purple);
}

.rounded-pill {
    border-radius: 30px;
}

/* --- TOP NAV --- */
.top-nav {
    background-color: white;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 250px;
    width: auto;
    margin-top: -55px;
    margin-bottom: -55px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.nav-links li {
    text-align: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    display: block;
    padding: 8px 14px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-pink);
    background-color: rgba(233, 91, 175, 0.08);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;

    min-height: calc(100vh - 120px);
    min-height: calc(100svh - 120px);

    display: flex;
    align-items: center;

    padding: 60px 0;
    color: white;
    overflow: hidden;
}

/* The actual hero image */
.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
    z-index: 0;
}

/* Darkens the image enough for the text to remain readable */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 40px;

    width: 100%;
}

.hero-text-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-left,
.hero-right {
    width: 45%;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    text-transform: none;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-right {
    text-align: right;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info {
    margin-bottom: 20px;
}

.hero-buttons-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.btn-hero-large {
    width: 45%;
    text-align: center;
    padding: 20px 0;
    font-size: 1.5rem;
    border-width: 3px;
}

/* --- WHAT'S HAPPENING NOW --- */
.happening-now {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.news-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.news-title {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
}

.news-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.news-banner {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 15px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: left;
}

/* --- EXPLORE OUR PROGRAMS --- */
.programs {
    padding: 60px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 30px auto 0;
}

.programs .programs-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

@media (max-width: 900px) {
    .programs .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs .programs-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: white;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    margin: 15px 0;
    border-radius: 4px;
}

.program-card p {
    font-size: 0.9rem;
    min-height: 40px;
}

/* Homepage specific card overrides to align columns and style headers */
.programs .program-card {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.programs .program-card h3.pink-text {
    color: var(--primary-pink);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.1;
    /* Reduced line height so words are closer together */
}

.programs .program-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.programs .program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    margin: 15px 0;
    border-radius: 4px;
}

.programs .program-card .btn-blue-small {
    margin-top: auto;
    align-self: center;
}

/* Modern alignment using CSS subgrid where supported */
@supports (grid-template-rows: subgrid) {
    .programs .program-card {
        display: grid;
        grid-row: span 4;
        grid-template-rows: subgrid;
        row-gap: 0;
        align-items: start;
    }

    .programs .program-card h3.pink-text {
        margin-bottom: 0;
        align-self: end;
        padding-bottom: 12px;
    }

    .programs .program-card p {
        margin-bottom: 0;
        align-self: start;
        padding-top: 4px;
    }

    .programs .program-card img {
        margin: 15px 0 0 0;
        align-self: center;
    }

    .programs .program-card .btn-blue-small {
        margin: 15px 0 0 0;
        align-self: center;
    }
}

/* --- UPCOMING SHOWS --- */
.shows {
    padding: 60px 0;
}

.shows h2 {
    text-align: center;
    margin-bottom: 40px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
}

.event-item img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.event-details {
    flex: 1;
}

.event-date {
    font-weight: 700;
    margin: 5px 0;
}

.event-loc {
    font-size: 0.9rem;
    color: #666;
}

.event-desc {
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Keep the full Christmas Spectacular artwork visible */
.christmas-show-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    background-color: white;
}

.buy-tickets-image .christmas-show-image {
    width: 100%;
    height: 300px;
    object-fit: contain !important;
    object-position: center !important;
    background-color: white;
}

.event-item .christmas-show-image,
.news-card .christmas-show-image {
    object-fit: contain !important;
    object-position: center !important;
    background-color: white;
}

/* --- COSTUME RENTALS --- */
.costume-rentals {
    display: flex;
    align-items: stretch;
}

.costume-left,
.costume-right {
    width: 50%;
}

.costume-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 40px;
}

.costume-content {
    max-width: 400px;
}

.costume-content h2 {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.3;
}

.costume-content .btn {
    margin-top: 15px;
}

.costume-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    min-height: 280px;
}

/* --- BEHIND THE SCENES --- */
.behind-scenes {
    padding: 60px 0 80px;
}

.section-badge {
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Makes them square like instagram */
    object-fit: cover;
    object-position: center top;
}

/* --- SUCCESS SECTION --- */
.success-section {
    padding: 70px 0;
}

.success-section h2 {
    margin-bottom: 50px;
    text-transform: none;
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.success-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.success-card {
    background: white;
    width: 30%;
    padding: 30px 20px;
    position: relative;
    /* Create the green shadow effect shown in design */
    box-shadow: 10px 10px 0 var(--primary-green);
    border: 2px solid var(--primary-green);
}

.success-card h3 {
    font-size: 4rem;
    margin-bottom: 5px;
}

.success-card p {
    font-weight: 700;
    font-size: 1.2rem;
    min-height: 40px;
    margin-bottom: 20px;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SUPPORTERS --- */
.supporters {
    padding: 60px 0;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.logos-grid img,
.text-sponsor {
    height: 60px;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s;
}

.logos-grid img:hover,
.text-sponsor:hover {
    opacity: 1;
}

.text-sponsor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.text-sponsor span {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}

/* --- BIG CTAS --- */
.big-ctas {
    padding: 20px 0 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* --- FOOTER --- */
.site-footer {
    padding: 50px 0 20px;
    background-color: var(--primary-blue);
    color: var(--text-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo-col {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo {
    max-width: 350px;
    width: 100%;
    margin-top: -30px;
    margin-bottom: -30px;
    margin-right: 20px;
}

.footer-info-col {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.footer-social-col {
    width: 30%;
}

.social-header {
    font-size: 1rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive basics */
@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-text-row,
    .hero-buttons-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-left,
    .hero-right,
    .btn-hero-large {
        width: 100%;
        text-align: center;
    }

    .costume-rentals {
        flex-direction: column;
    }

    .costume-left,
    .costume-right {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-grid {
        flex-direction: column;
        align-items: center;
    }

    .success-card {
        width: 90%;
        max-width: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-logo-col,
    .footer-info-col,
    .footer-social-col {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer-logo-col {
        justify-content: center;
    }

    .footer-logo {
        margin-right: 0;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        width: 100%;
    }

    .nav-logo {
        height: 140px;
        margin-top: -15px;
        margin-bottom: -15px;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   SECONDARY PAGES (ABOUT, PROGRAMS, ETC)
   ========================================= */

/* --- GENERAL --- */
.page-header {
    padding: 60px 0 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-15 {
    margin-top: 15px;
}

.pb-80 {
    padding-bottom: 80px;
}

.section-title-bg {
    background: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- ABOUT PAGE --- */
.mission-section,
.vision-section,
.leadership-section {
    padding: 60px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.mission-text {
    flex: 1;
}

.mission-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 10px 10px 0 var(--primary-pink);
}

.vision-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.staff-member {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.staff-img-col {
    flex: 0 0 300px;
}

.staff-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.staff-text-col {
    flex: 1;
}

.staff-text-col h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.staff-text-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* --- PROGRAMS PAGE --- */
.announcement-section {
    padding: 40px 0;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.announcement-img {
    flex: 1;
}

.announcement-img img {
    width: 100%;
    border-radius: 10px;
}

.announcement-text {
    flex: 1;
}

.acting-programs-section,
.summer-camps-section,
.performance-opportunities-section,
.registration-section {
    padding: 60px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.program-card h3 {
    text-align: left;
    margin-bottom: 15px;
}

/* Acting Programs Specific Styles */
.acting-programs-section .program-card {
    display: flex;
    flex-direction: column;
}

.acting-programs-section .program-card h3 {
    min-height: 3.4rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .acting-programs-section .program-card h3 {
        min-height: auto;
    }
}

.acting-programs-section .program-card img {
    border-radius: 0;
    margin-bottom: 15px;
}

/* --- PROGRAM CATALOG --- */

.programs-intro {
    max-width: 780px;
    margin: 0 auto 40px;
}

.programs-intro h3 {
    margin-bottom: 12px;
}

.programs-intro p {
    margin: 0;
    line-height: 1.7;
}

.acting-programs-section .program-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1150px;
    margin: 0 auto;
}

.acting-programs-section .program-card.program-catalog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    overflow: hidden;

    background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.acting-programs-section .program-card.program-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.acting-programs-section .program-catalog-card .program-catalog-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;

    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.program-catalog-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 24px 20px 25px;
    text-align: center;
}

.acting-programs-section .program-catalog-card .program-catalog-body h3 {
    margin: 0 0 22px;
    line-height: 1.35;
    text-align: center;
}

.program-catalog-button {
    min-width: 165px;
    margin-top: auto;
    text-align: center;
}



@media (max-width: 950px) {
    .acting-programs-section .program-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .acting-programs-section .program-catalog-grid {
        grid-template-columns: 1fr;
    }

    .program-catalog-card {
        max-width: 430px;
        margin: 0 auto;
    }
}

.program-card img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 15px 0;
}

.date-text {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.musical-theater-section {
    padding: 60px 0;
}

.musical-theater-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.musical-text {
    flex: 1;
    text-align: left;
}

.musical-img {
    flex: 1;
}

.musical-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: -10px 10px 0 var(--primary-green);
}

.summer-camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.camp-card {
    text-align: center;
}

.camp-card p {
    color: #333333;
    margin-top: 15px;
    font-weight: 600;
}

.camp-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.camp-card img:hover {
    transform: scale(1.02);
}

.pink-bg-header {
    background: var(--primary-pink);
    color: white !important;
    display: inline-block;
    padding: 20px 80px;
    border-radius: 0;
    box-shadow: none;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Lightbox Styles */
.lightbox-dialog {
    border: none;
    border-radius: 10px;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    overflow: visible;
    margin: auto;
}

.lightbox-dialog::backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.lightbox-dialog img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.close-lightbox {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.registration-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.registration-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.reg-img {
    width: 300px;
    border-radius: 10px;
    flex-shrink: 0;
}

.reg-text {
    flex: 1;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.faq-item summary {
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-pink);
}

.faq-item[open] summary::after {
    content: '\f0d8';
}

.faq-answer {
    padding: 0 15px 15px;
    line-height: 1.6;
}

.vision-body {
    color: #333333;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bg-light-gray {
    background-color: #EEEEEE;
}

/* --- SHOWS PAGE RESTYLING --- */
.shows-upcoming-section {
    padding: 80px 0;
}

.shows-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 20px;
    margin-top: 30px;
}

.shows-upcoming-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    text-align: left;
}

.shows-upcoming-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.shows-upcoming-card p.show-dates {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 1.1rem;
}

.shows-upcoming-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 0;
    border-radius: 0;
    display: block;
}

.shows-upcoming-card p:last-child {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.buy-tickets-section {
    padding: 80px 0;
}

.buy-tickets-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.buy-tickets-row:last-child {
    margin-bottom: 0;
}

.buy-tickets-text {
    flex: 1;
    text-align: left;
}

.buy-tickets-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #1E1E1E;
}

.buy-tickets-text p.show-dates {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.buy-tickets-text p {
    margin-bottom: 15px;
    color: #333;
}

.buy-tickets-text .btn-container {
    display: flex;
    gap: 15px;
}

.buy-tickets-image {
    flex: 1;
}

.buy-tickets-image img {
    width: 100%;
    display: block;
    background: #D9D9D9;
    border-radius: 0;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.recital-section {
    padding: 80px 0;
}

.recital-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.recital-image {
    flex: 0 0 300px;
}

.recital-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recital-text {
    flex: 1;
    text-align: left;
}

.recital-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-pink);
}

.recital-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333333;
}

.recital-text p.date-text {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recital-text .btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.past-productions-section {
    padding: 60px 0;
}

.past-productions-section p {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.past-productions-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.past-productions-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    display: block;
}


/* --- COSTUME RENTALS PAGE --- */
.costume-overview-section {
    padding: 40px 0 80px 0;
}

.overview-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.overview-row.reverse {
    flex-direction: row-reverse;
}

.overview-image {
    flex: 1;
}

.overview-text {
    flex: 1;
}

.costume-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: left;
}

.category-title {
    font-weight: bold;
    color: #1E1E1E;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.btn-green-large {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-green-large:hover {
    background-color: #27c156;
    color: white;
}

/* --- NEWS & GALLERY PAGE --- */
.bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bts-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spotlight-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.spotlight-text-container {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    font-size: 0.9rem;
}

/* Modal Styles */
.spotlight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spotlight-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-pink);
    cursor: pointer;
}

.close-btn:hover {
    color: #1E1E1E;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.update-row {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.update-img-col {
    flex: 0 0 300px;
}

.update-img-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.update-text-col {
    flex: 1;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.announcement-text.line-clamp-10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-new img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    position: relative;
}

.video-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* =========================================================
   YOUTUBE VIDEO GALLERY
   ========================================================= */

.video-gallery-section {
    padding: 80px 0;
}

.video-gallery-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #333333;
    line-height: 1.7;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.youtube-card {
    min-width: 0;
    overflow: hidden;

    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.youtube-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.17);
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111111;
}

.youtube-wrapper iframe {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    border: 0;
}

.youtube-channel-cta {
    margin-top: 40px;
}

.youtube-channel-cta .btn {
    min-width: 230px;
}


/* --- RESPONSIVE LAYOUT --- */

@media (max-width: 900px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .video-gallery-section {
        padding: 55px 0;
    }

    .video-gallery-intro {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .youtube-grid {
        gap: 20px;
    }

    .youtube-card {
        border-radius: 8px;
    }

    .youtube-channel-cta {
        margin-top: 30px;
    }

    .youtube-channel-cta .btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
}

/* =========================================
   COSTUME GALLERY STYLES
   ========================================= */

.gallery-back-link {
    margin-top: 30px;
    margin-bottom: 20px;
}

.gallery-back-link a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.gallery-back-link a:hover {
    color: var(--primary-purple);
}

.costume-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-card-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background: #fff;
    aspect-ratio: 4 / 5;
    border: 1px solid #eee;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.gallery-card-item:hover img {
    transform: scale(1.04);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 91, 175, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-item:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-pink);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Category card link styling & hover effects */
.costume-categories-grid a.category-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.costume-categories-grid a.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.costume-categories-grid a.category-card .category-title {
    padding: 15px;
    margin: 0;
    background: white;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
}

.costume-categories-grid a.category-card:hover .category-title {
    color: var(--primary-pink);
}

.costume-categories-grid a.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.costume-categories-grid a.category-card:hover img {
    transform: scale(1.02);
}

/* Lightbox Navigation Buttons */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1010;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.lightbox-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

/* Ensure the arrows wrap and align beautifully on smaller screens */
@media (max-width: 768px) {
    .prev-btn {
        left: 10px;
        background: rgba(255, 255, 255, 0.85);
    }

    .next-btn {
        right: 10px;
        background: rgba(255, 255, 255, 0.85);
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* =========================================
   HERO BANNER & SCHOLARSHIP PAGE STYLES
   ========================================= */

/* --- HOME HERO BANNER --- */
.hero-banner-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #000;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SCHOLARSHIP PAGE --- */
.scholarship-intro {
    padding: 60px 0;
}

.scholarship-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.scholarship-text {
    flex: 1.2;
}

.scholarship-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.scholarship-text p strong {
    color: var(--primary-purple);
}

.scholarship-image {
    flex: 0.8;
}

.scholarship-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 12px 12px 0 var(--primary-pink);
    display: block;
    object-fit: cover;
}

.policies-section {
    padding: 60px 0;
}

.policy-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-pink);
}

.policy-card h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.policy-card p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #555;
}

.policy-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.policy-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.policy-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 1.25rem;
}

.eligibility-section {
    padding: 60px 0;
}

.eligibility-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 850px;
    margin: 0 auto;
    border-left: 6px solid var(--primary-blue);
}

.eligibility-card h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.eligibility-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    background: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-pink);
    cursor: pointer;
}

.app-cta-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 15px 35px rgba(106, 63, 199, 0.25);
}

.app-cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.app-cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-weight: 600;
}

.btn-white-purple {
    background-color: white;
    color: var(--primary-purple);
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white-purple:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .scholarship-grid {
        flex-direction: column;
        gap: 30px;
    }

    .policy-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .eligibility-card {
        padding: 30px 20px;
    }
}

/* --- TESTIMONIALS LIST --- */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-img-wrapper {
    flex: 0 0 150px;
}

.testimonial-img-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 8px 8px 0 var(--primary-pink);
    display: block;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 5px;
}

.testimonial-text-wrapper {
    flex: 1;
    text-align: left;
}

.testimonial-text-wrapper p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1rem;
}

/* --- SOUTH COAST SCHOLARSHIP --- */
.sci-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.sci-column {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sci-column ol {
    margin-left: 20px;
    line-height: 1.6;
}

.sci-column ol li {
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .testimonial-item,
    .testimonial-item.reverse {
        flex-direction: column !important;
        text-align: center;
        padding: 25px 20px;
    }

    .testimonial-text-wrapper {
        text-align: center;
    }

    .testimonial-img-wrapper {
        margin: 0 auto 15px;
        flex: 0 0 auto;
    }

    .sci-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sci-column {
        padding: 25px 20px;
    }
}

/* --- SHOW GALLERY LINK CARDS IN PHOTO GALLERY --- */
.gallery-link-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.gallery-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-link-card img {
    transition: transform 0.5s ease;
}

.gallery-link-card:hover img {
    transform: scale(1.05);
}

/* --- HOMEPAGE LAYOUT CUSTOM UPDATES --- */
.programs .container {
    max-width: 1350px;
}

.costume-left {
    padding: 20px 40px;
}

.costume-right img {
    min-height: 200px;
    object-position: center top;
}

/* =========================================================
   COSTUME COLLECTIONS
   ========================================================= */

.costume-gallery-instructions {
    max-width: 700px;
    margin: 0 auto 35px;
}

.costume-gallery-trigger {
    position: relative;
    cursor: pointer;
}

.costume-gallery-label {
    display: block;
    padding: 12px 15px;
    color: var(--primary-purple);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.costume-gallery-label i {
    margin-right: 6px;
}

.other-costume-shows {
    max-width: 850px;
    margin: 55px auto 0;
    padding: 30px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.other-costume-shows h3 {
    margin-bottom: 12px;
    color: var(--primary-purple);
}

.other-costume-shows-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.other-costume-shows-list li {
    padding: 9px 16px;
    background: var(--text-light);
    border-radius: 999px;
    font-weight: 700;
}

.costume-lightbox-dialog {
    width: min(1100px, 94vw);
    max-width: 1100px;
    padding: 50px 70px 35px;
}

.costume-lightbox-title {
    margin: 0 45px 25px;
    color: white;
    text-align: center;
}

.costume-lightbox-figure {
    margin: 0;
    text-align: center;
}

.costume-lightbox-figure img {
    display: block;
    max-width: 100%;
    max-height: 72vh;
    margin: 0 auto;
    object-fit: contain;
}

.costume-lightbox-figure figcaption {
    margin-top: 12px;
    color: white;
}

.costume-lightbox-counter {
    margin: 18px 0 0;
    color: white;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 700px) {
    .costume-lightbox-dialog {
        padding: 55px 45px 25px;
    }

    .costume-lightbox-title {
        margin-right: 20px;
        margin-left: 20px;
        font-size: 1.35rem;
    }

    .other-costume-shows {
        padding: 24px 18px;
    }

    .other-costume-shows-list {
        flex-direction: column;
        align-items: center;
    }
}

/* --- SHOW DETAILS PAGE STYLES --- */
.show-details-section {
    padding: 60px 0 80px;
}

.show-details-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 50px;
    margin-top: 30px;
}

.show-details-main {
    text-align: left;
}

.show-details-main h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.show-details-main p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.show-details-sidebar {
    position: sticky;
    top: 150px;
    /* offset for nav */
    align-self: start;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-pink);
    text-align: left;
}

.sidebar-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 25px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.show-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.4;
}

.show-meta-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.show-meta-content {
    flex: 1;
}

.show-meta-content strong {
    display: block;
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hashtag-pill-container {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.hashtag-pill {
    display: inline-block;
    background: #F0EDF5;
    color: var(--primary-purple);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.scholarship-highlight-box {
    background: #FFF3FB;
    border-left: 5px solid var(--primary-pink);
    padding: 30px;
    margin: 35px 0;
    border-radius: 4px;
    text-align: left;
}

.scholarship-highlight-box h3 {
    font-size: 1.4rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-weight: 700;
}

.scholarship-highlight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
}



@media (max-width: 900px) {
    .show-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .show-details-sidebar {
        position: relative;
        top: 0;
    }
}

/* =========================================================
   EXTRACTED INLINE STYLES
   Generated during project cleanup so HTML contains no inline CSS.
   ========================================================= */

.u-inline-001 {
    font-size: 3rem !important;
}

.u-inline-002 {
    font-size: 3.5rem !important;
    text-transform: uppercase !important;
}

.u-inline-003 {
    font-size: 1.2rem !important;
    color: #666 !important;
}

.u-inline-004 {
    padding: 40px 0 !important;
    border-top: 1px solid #eee !important;
    border-bottom: 1px solid #eee !important;
}

.u-inline-005 {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.u-inline-006 {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-bottom: 25px !important;
}

.u-inline-007 {
    font-weight: 700 !important;
    color: var(--primary-pink) !important;
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.u-inline-008 {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.u-inline-009 {
    border-radius: 30px !important;
    font-weight: bold !important;
    padding: 15px 30px !important;
}

.u-inline-010 {
    padding: 40px 0 80px 0 !important;
}

.u-inline-011 {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-bottom: 0 !important;
}

.u-inline-012 {
    padding-top: 30px !important;
}

.u-inline-013 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

.u-inline-014 {
    color: var(--primary-pink) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.u-inline-015 {
    padding-top: 20px !important;
}

.u-inline-016 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
}

.u-inline-017 {
    color: var(--primary-pink) !important;
    font-size: 3.5rem !important;
    text-transform: uppercase !important;
}

.u-inline-018 {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.u-inline-019 {
    color: var(--primary-green) !important;
    font-size: 2rem !important;
    margin-bottom: 15px !important;
}

.u-inline-020 {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

.u-inline-021 {
    padding: 80px 0 !important;
}

.u-inline-022 {
    color: white !important;
    font-size: 2.5rem !important;
    text-transform: uppercase !important;
}

.u-inline-023 {
    background-color: #F8F8F8 !important;
    padding: 60px 0 !important;
}

.u-inline-024 {
    color: var(--primary-pink) !important;
    font-size: 2.5rem !important;
    text-transform: uppercase !important;
}

.u-inline-025 {
    font-weight: bold !important;
    font-size: 1.1rem !important;
    color: #1E1E1E !important;
}

.u-inline-026 { pointer-events: none !important; cursor: default !important; }

.u-inline-027 {
    background: white !important;
    padding: 60px 0 20px 0 !important;
}

.u-inline-028 {
    color: #1E1E1E !important;
}

.u-inline-029 {
    padding: 60px 0 !important;
    background: white !important;
}

.u-inline-030 {
    color: var(--primary-pink) !important;
    font-size: 2.5rem !important;
}

.u-inline-031 {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    text-decoration: none !important;
}

.u-inline-032 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.15) 100%) !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.u-inline-033 {
    margin: 0 !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: white !important;
    letter-spacing: 1px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.u-inline-034 {
    margin: 5px 0 0 !important;
    font-size: 0.85rem !important;
    opacity: 0.95 !important;
    color: var(--primary-pink) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.u-inline-035 {
    text-decoration: none !important;
    display: block !important;
}

.u-inline-036 {
    cursor: pointer !important;
}

.u-inline-037 {
    margin-top: 50px !important;
}

.u-inline-038 {
    margin-bottom: 20px !important;
    font-weight: bold !important;
    color: var(--primary-purple) !important;
}

.u-inline-039 {
    margin-top: 30px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

.u-inline-040 {
    font-weight: 700 !important;
    color: var(--primary-purple) !important;
    margin-top: 15px !important;
}

.u-inline-041 {
    padding-top: 40px !important;
}

.u-inline-042 {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.u-inline-043 {
    color: #333333 !important;
    font-size: 2rem !important;
}

.u-inline-044 {
    font-size: 1.1rem !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.u-inline-045 {
    color: white !important;
    font-size: 2.5rem !important;
}

.u-inline-046 {
    color: white !important;
}

.u-inline-047 {
    color: var(--primary-green) !important;
    font-size: 2.5rem !important;
    text-transform: uppercase !important;
}

.u-inline-048 {
    font-size: 2.5rem !important;
    text-transform: uppercase !important;
    color: #1E1E1E !important;
}

.u-inline-049 {
    border-radius: 30px !important;
    display: inline-block !important;
}

.u-inline-050 {
    margin-top: 15px !important;
}

.u-inline-051 {
    color: var(--primary-purple) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.u-inline-052 {
    padding: 60px 0 !important;
    border-top: 1px solid #ddd !important;
}

.u-inline-053 {
    color: var(--primary-purple) !important;
    max-width: 800px !important;
    margin: 0 auto 30px !important;
    text-transform: none !important;
    font-size: 1.15rem !important;
}

.u-inline-054 {
    border-top: 5px solid var(--primary-pink) !important;
}

.u-inline-055 {
    color: var(--primary-purple) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.u-inline-056 {
    color: #333 !important;
    margin-left: 20px !important;
}

.u-inline-057 {
    list-style-type: disc !important;
    margin-left: 25px !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.u-inline-058 {
    border-top: 5px solid var(--primary-green) !important;
}

.u-inline-059 {
    color: #27c156 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.u-inline-060 {
    color: var(--primary-pink) !important;
}

.u-inline-061 {
    margin-top: 25px !important;
    font-weight: bold !important;
    text-align: center !important;
    color: var(--primary-purple) !important;
}

.u-inline-062 {
    color: white !important;
    margin-top: 25px !important;
}

.u-inline-063 {
    width: 100% !important;
    margin: 18px 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.55) !important;
}

/* =========================================================
   FALL 2026–2027 PROGRAM SCHEDULE
   ========================================================= */

.fall-schedule-section {
    padding: 80px 0;
    background:
        linear-gradient(
            180deg,
            #fff8fc 0%,
            #fdf1f8 100%
        );
}

.schedule-heading {
    max-width: 850px;
    margin: 0 auto 30px;
}

.schedule-season-label {
    margin-bottom: 4px;
    color: var(--primary-pink);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-heading h2 {
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 2.5rem;
}

.schedule-tagline {
    margin-bottom: 18px;
    color: var(--primary-purple);
    font-size: 1.1rem;
    font-weight: 700;
}

.schedule-tagline span {
    padding: 0 7px;
    color: var(--primary-pink);
}

.schedule-intro {
    color: #555555;
    line-height: 1.7;
}


/* --- CATEGORY KEY --- */

.schedule-key {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    max-width: 1050px;
    margin: 0 auto 35px;
    padding: 18px 24px;
    background: white;
    border: 1px solid #eed9e7;
    border-radius: 12px;
}

.schedule-key-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #444444;
    font-size: 0.82rem;
    font-weight: 700;
}

.schedule-key-dot {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 50%;
}

.company-dot {
    background: #1e1e1e;
}

.theater-dot {
    background: var(--primary-pink);
}

.combo-dot {
    background: var(--primary-blue);
}

.teen-dot {
    background: var(--primary-purple);
}

.rehearsal-dot {
    background: #b78943;
}

.hiphop-dot {
    background: var(--primary-green);
}


/* --- WEEKLY GRID --- */

.weekly-schedule-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.schedule-day {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid #ead8e4;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(66, 35, 53, 0.06);
}

.schedule-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 74px;
    padding: 15px 17px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary-pink),
            var(--primary-purple)
        );
}

.schedule-day-header h3 {
    margin: 0;
    color: white;
    font-size: 1.15rem;
    text-transform: uppercase;
}

.schedule-day-header p {
    margin: 2px 0 0;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.schedule-day-header i {
    font-size: 1.3rem;
    opacity: 0.85;
}

.schedule-class-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 10px;
}

.schedule-class {
    position: relative;
    padding: 13px 12px 13px 16px;
    overflow: hidden;
    background: white;
    border: 1px solid #ecdde6;
    border-radius: 9px;
}

.schedule-class::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--primary-pink);
}

.schedule-company::before {
    background: #1e1e1e;
}

.schedule-theater::before {
    background: var(--primary-pink);
}

.schedule-combo::before {
    background: var(--primary-blue);
}

.schedule-teen::before {
    background: var(--primary-purple);
}

.schedule-rehearsal::before {
    background: #b78943;
}

.schedule-hiphop::before {
    background: var(--primary-green);
}

.schedule-time {
    margin: 0 0 4px;
    color: var(--primary-purple);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.3;
}

.schedule-class h4 {
    margin: 0 0 5px;
    color: var(--text-dark);
    font-size: 0.86rem;
    line-height: 1.3;
}

.schedule-class p:not(.schedule-time) {
    margin: 0;
    color: #555555;
    font-size: 0.74rem;
    line-height: 1.4;
}

.schedule-class .schedule-teacher {
    margin-top: 4px;
    color: #777777;
    font-style: italic;
}

.schedule-new-badge {
    display: inline-block;
    margin: 0 0 6px;
    padding: 2px 8px;
    color: white;
    background: var(--primary-green);
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* =========================================================
   SCHEDULE DETAILS
   ========================================================= */

.schedule-details-section {
    padding: 75px 0;
    background: #ffffff;
}

.schedule-details-heading {
    margin-bottom: 35px;
}

.schedule-details-heading h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: 2.4rem;
}

.schedule-details-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.schedule-detail-card {
    padding: 22px;
    background: #fff8fc;
    border: 1px solid #eed9e7;
    border-radius: 12px;
}

.schedule-detail-age {
    margin: 0 0 5px;
    color: var(--primary-purple);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.schedule-detail-card h3 {
    margin: 0 0 9px;
    color: var(--primary-pink);
    font-size: 1.05rem;
    line-height: 1.3;
}

.schedule-detail-card > p:last-child {
    margin: 0;
    color: #4d4d4d;
    font-size: 0.85rem;
    line-height: 1.55;
}

.schedule-detail-featured {
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary-purple),
            var(--primary-pink)
        );
    border-color: transparent;
}

.schedule-detail-featured .schedule-detail-age,
.schedule-detail-featured h3,
.schedule-detail-featured > p:last-child {
    color: white;
}


/* --- IMPORTANT DATES --- */

.schedule-dates-banner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    margin-top: 35px;
    padding: 28px 32px;
    color: white;
    background: var(--text-dark);
    border-radius: 13px;
}

.schedule-dates-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.schedule-dates-heading i {
    color: var(--primary-pink);
    font-size: 2rem;
}

.schedule-dates-heading p {
    margin: 0;
    color: var(--primary-pink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.schedule-dates-heading h3 {
    margin: 2px 0 0;
    color: white;
    font-size: 1.15rem;
}

.schedule-date-list {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.schedule-date-item {
    padding-left: 16px;
    border-left: 2px solid var(--primary-pink);
}

.schedule-date-item strong,
.schedule-date-item span {
    display: block;
}

.schedule-date-item strong {
    color: white;
    font-size: 0.82rem;
}

.schedule-date-item span {
    margin-top: 3px;
    color: #dddddd;
    font-size: 0.75rem;
}


/* --- SCHEDULE CONTACT --- */

.schedule-contact {
    max-width: 780px;
    margin: 65px auto 0;
}

.schedule-contact h2 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.schedule-contact p {
    margin-bottom: 25px;
    color: #555555;
    line-height: 1.7;
}


/* =========================================================
   SCHEDULE RESPONSIVE LAYOUT
   ========================================================= */

@media (max-width: 1150px) {
    .weekly-schedule-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .schedule-details-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .weekly-schedule-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .schedule-details-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .schedule-dates-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .fall-schedule-section,
    .schedule-details-section {
        padding: 55px 0;
    }

    .schedule-heading h2,
    .schedule-details-heading h2 {
        font-size: 1.8rem;
    }

    .schedule-key {
        justify-content: flex-start;
        padding: 16px;
    }

    .weekly-schedule-grid,
    .schedule-details-grid,
    .schedule-date-list {
        grid-template-columns: 1fr;
    }

    .schedule-day {
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
    }

    .schedule-class h4 {
        font-size: 0.95rem;
    }

    .schedule-class p:not(.schedule-time) {
        font-size: 0.82rem;
    }

    .schedule-dates-banner {
        padding: 25px 20px;
    }

    .schedule-date-item {
        padding: 10px 0 10px 14px;
    }
}


/* Recreational Dance class grid */
.recreational-class-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.recreational-class-grid .program-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

@media (max-width: 900px) {
    .recreational-class-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recreational-class-grid .program-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .recreational-class-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   GIVE KIDS A CHANCE APPLICATION CTA
   ========================================================= */

.gkac-application-section {
    padding: 55px 0;
}

.gkac-application-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;

    max-width: 1050px;
    margin: 0 auto;
    padding: 30px 35px;

    background: linear-gradient(
        135deg,
        rgba(233, 91, 175, 0.10),
        rgba(123, 198, 245, 0.16)
    );

    border: 1px solid rgba(233, 91, 175, 0.22);
    border-left: 6px solid var(--primary-pink);
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.gkac-application-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    color: white;
    background: var(--primary-pink);
    border-radius: 50%;

    font-size: 1.6rem;
}

.gkac-application-content h2 {
    margin: 0 0 8px;
    color: var(--text-dark);
    font-size: 1.65rem;
    text-transform: none;
}

.gkac-application-content p {
    margin: 0;
    color: #444444;
    line-height: 1.65;
}

.gkac-application-action {
    text-align: right;
}

.gkac-application-button {
    max-width: 280px;
    padding: 14px 24px;

    color: white;
    background: var(--primary-pink);

    border-radius: 30px;

    line-height: 1.3;
    text-align: center;
}

.gkac-application-button:hover {
    color: white;
    background: var(--primary-purple);
}


/* --- RESPONSIVE --- */

@media (max-width: 850px) {

    .gkac-application-box {
        grid-template-columns: auto 1fr;
    }

    .gkac-application-action {
        grid-column: 1 / -1;
        text-align: center;
    }

    .gkac-application-button {
        max-width: none;
    }
}

@media (max-width: 600px) {

    .gkac-application-section {
        padding: 40px 0;
    }

    .gkac-application-box {
        grid-template-columns: 1fr;
        gap: 18px;

        padding: 28px 22px;

        text-align: center;
    }

    .gkac-application-icon {
        margin: 0 auto;
    }

    .gkac-application-action {
        grid-column: auto;
    }

    .gkac-application-button {
        display: block;
        width: 100%;
    }
}