/* common */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700");

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    height: 100%;
    background-color: #fff;
}

.btn {
    border-radius: 10pt;
    padding-left: 10pt;
    padding-right: 10pt;
    border: 2px solid transparent;
}

.btn-lg {
    border-radius: 15pt;
    padding-left: 15pt;
    padding-right: 15pt;
    border: 3px solid transparent;
    min-width: 10rem;
}

.btn-primary {
    color: black;
    background-color: #ff9b65;
    border-color: #000000;
}

.btn-secondary {
    color: #ff9b65;
    background-color: #000000;
    border-color: #ff9b65;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: black;
    background: #ff9b65;
    border-color: transparent;
}

@property --ang {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: true;
}

.btn-golden {
    --ani-grad: conic-gradient(from var(--ang), 
        #ffd700, 
        #ffed4e, 
        #ffd700,
        rgba(255, 215, 0, 0.7),
        rgba(255, 215, 0, 0.3),
        rgba(255, 215, 0, 0.1),
        transparent,
        transparent 70%,
        #ffd700) border-box;
    position: relative;
    color: #000;
    border: 3px solid transparent;
    background: 
        linear-gradient(#ff9b65 0 0) padding-box,
        var(--ani-grad);
    animation: rotate-golden 3s linear infinite;
}

.btn-golden::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid transparent;
    border-radius: 23px;
    background: var(--ani-grad);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-mask: radial-gradient(ellipse, black 60%, transparent 70%);
    mask: radial-gradient(ellipse, black 60%, transparent 70%);
}

@keyframes rotate-golden {
    0% { --ang: 0deg; }
    100% { --ang: -360deg; }
}

.font-weight-lighter {
    font-weight: 200;
}

.font-weight-light {
    font-weight: 300;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-bold {
    font-weight: 700;
}

.mask-container {
    position: relative;
}

.mask-svg {
    width: 100%;
    position: absolute;
    bottom: -1px;
    display: block;
}

.mask-svg svg {
    display: block;
    width: 100%;
    height: auto;
}

.placeholder-bg {
    width: 100%;
    height: 320px;
    background-color: #000000;
}

.duration-1 {
    animation-duration: 0.5s;
}

.duration-2 {
    animation-duration: 1.0s;
}

.duration-3 {
    animation-duration: 1.5s;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes unblur {
    0% {
        filter: blur(1rem);
    }

    100% {
        filter: blur(0px);
    }
}

@keyframes transform {
    0% {
        transform: translate3d(0, 3rem, 0) rotate3d(0.25, -1, 0, 66.6deg);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Navbar */

.navbar-brand {
    position: absolute;
    top: 10pt;
    right: 10pt;
    width: 100px;
    height: 110px;
}

.navbar-nav {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.2rem 0.5rem;
}

.navbar-nav>li>a {
    padding: 0.4rem 0.75rem !important;
    margin: 0 0.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 12pt;
    border-radius: 50px;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
}

.navbar-nav>li>a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler.active .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* teaser */

.teaser-header {
    animation-name: unblur;
}

.teaser-text {
    position: absolute;
    max-height: 300px;
    margin-top: 50pt;
    animation-name: fadein, unblur, transform;
    animation-duration: 2s;
}

.teaser-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0%;
    width: 100%;
    height: 800pt;
}

@media screen and (max-width: 300pt) {
    .teaser-text {
        max-height: 100px;
        margin-top: 80pt;
        margin-left: -20pt;
    }

    .teaser-bg {
        background-position: 10% 0%;
        height: 400pt;
    }

    .placeholder-bg {
        height: 100px;
    }
}

@media screen and (min-width: 300pt) and (max-width: 800pt) {
    .teaser-text {
        max-height: 220px;
        margin-left: -30pt;
    }

    .teaser-bg {
        background-position: 10% 0%;
        height: 400pt;
    }
}

@media screen and (min-width: 800pt) and (max-width: 1000pt) {
    .teaser-text {
        max-height: 300px;
    }
    .teaser-bg {
        height: 500pt;
    }
}

/* intro */

#intro {
    padding: 4rem 0;
}

#intro h1 {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

#intro h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9b65, #ffd700);
    border-radius: 2px;
}

/* classes */

.section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9b65, #ffd700);
    border-radius: 2px;
}

.classes .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.classes .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.classes .card-img-top {
    transition: transform 0.4s ease;
}

.classes .card:hover .card-img-top {
    transform: scale(1.05);
}

.classes .card-text {
    text-align: justify;
}

/* prices */

.prices-content {
    background-color: #000000;
}

.prices-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400pt;
}

.price-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.price-card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.price-card .card-title {
    color: #ffd700;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* contact */

.contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.wechat-qr {
    max-height: 400pt;
}

.responsive-map {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* navigation */

.nav-link.highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
    color: #000 !important;
    font-weight: bold !important;
    border-radius: 20px !important;
    padding: 0.5rem 1.5rem !important;
    animation: shine 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-link.highlight:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

@keyframes shine {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
    }
}

/* Mobile menu - fullscreen overlay */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1040;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-nav {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        text-align: center;
        padding: 0;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.6rem !important;
        padding: 0.75rem 2rem !important;
        font-weight: 300;
        letter-spacing: 0.05em;
        transition: color 0.2s ease, letter-spacing 0.2s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        color: #ff9b65 !important;
        letter-spacing: 0.12em;
    }

    .navbar-toggler {
        z-index: 1050;
    }
}

/* showcase banner (home page) */

.showcase-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    border-top: 3px solid #dc143c;
    border-bottom: 3px solid #dc143c;
    position: relative;
    overflow: hidden;
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-banner h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.showcase-banner h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.showcase-title-multiline {
    white-space: pre-line;
}

.showcase-banner .description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.showcase-banner .date {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.btn-showcase {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #dc143c 100%);
    background-size: 200% 100%;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: shine-red 2s ease-in-out infinite, gradientShift 3s ease infinite;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-showcase:hover {
    box-shadow: 0 0 35px rgba(220, 20, 60, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
    color: #fff;
    border-color: rgba(255, 107, 107, 0.6);
}

@keyframes shine-red {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 35px rgba(220, 20, 60, 1), inset 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* showcase page styles */

.hero-showcase {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 8rem 0 4rem 0;
    border-top: 3px solid #dc143c;
    border-bottom: 3px solid #dc143c;
    position: relative;
    overflow: hidden;
}

.hero-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-showcase h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-showcase h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-showcase .subhead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-showcase .produced {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.detail-item {
    text-align: center;
    padding: 2rem 1rem;
}

.detail-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.detail-item .label {
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.detail-item .value {
    font-size: 1.2rem;
    color: #333;
}

.support-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s;
}

.support-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.support-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.support-card .card-text {
    color: #666;
    line-height: 1.8;
}

.footnote {
    font-size: 0.85rem;
    color: #999;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* profiles page (team, teachers) */

.profile-card-wrapper {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 0;
    align-items: flex-start;
}

.profile-image-col {
    flex: 0 0 400px;
}

.profile-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.profile-content-col {
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-subtitle {
    color: #ff9b65;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.profile-description {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.profile-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.profile-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0;
}

@media (max-width: 768px) {
    .profile-card-wrapper {
        flex-direction: column !important;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .profile-image-col {
        flex: none;
        width: 100%;
    }

    .profile-img {
        max-height: 350px;
        object-fit: cover;
        width: 100%;
    }
}

/* jobs page */

.jobs-hero {
    border-left: 4px solid #ff9b65;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #fff8f4, #fff);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.jobs-hero p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.jobs-highlights-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0e0d6;
}

.jobs-highlights-row .jobs-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.jobs-highlights-row .jobs-highlight-item i {
    color: #ff9b65;
    font-size: 0.9rem;
}

.jobs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9b65, #ffd700);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.jobs-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.jobs-list {
    list-style: none;
    padding-left: 0;
}

.jobs-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.jobs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9b65, #ffd700);
}

.jobs-cta {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.jobs-cta p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 1rem;
}

@media (max-width: 768px) {
    .jobs-hero {
        padding: 1.5rem;
    }

    .jobs-card {
        padding: 1.5rem;
    }

    .jobs-cta {
        padding: 1.5rem;
    }

    .jobs-highlights {
        margin-top: 1.5rem;
    }
}

/* rental page */

.rental-page .img-fluid {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.rental-price-badge {
    background: linear-gradient(135deg, #fff8f4, #fff);
    border: 2px solid #ff9b65;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: inline-block;
    margin-top: 1.5rem;
}

.rental-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff9b65;
}

.rental-per {
    font-size: 1.1rem;
    color: #666;
}

.rental-note {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
}

.rental-feature {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.rental-feature i {
    color: #ff9b65;
}

.rental-notes {
    color: #666;
    padding-left: 1.25rem;
}

.rental-notes li {
    margin-bottom: 0.4rem;
}

.rental-cta {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.rental-cta p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 1rem;
}

/* npo page */

.npo-about-card {
    background: linear-gradient(135deg, #fff8f4, #fff);
    border-left: 4px solid #ff9b65;
    border-radius: 0 12px 12px 0;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.npo-about-card .lead {
    color: #444;
    line-height: 1.8;
}

.npo-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.npo-qr-wrapper {
    display: inline-block;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.npo-qr-wrapper img {
    max-width: 250px;
    border-radius: 8px;
}

.npo-method-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.npo-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.npo-method-card i {
    font-size: 2rem;
    color: #ff9b65;
    margin-bottom: 0.75rem;
}

.npo-method-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.npo-method-card p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.npo-footnote {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.npo-footnote p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.npo-contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.npo-link {
    color: #ff9b65;
    text-decoration: none;
    font-weight: 500;
}

.npo-link:hover {
    color: #ffd700;
}

.npo-response-note {
    color: #999;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: inline-block;
}

/* events page */

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.event-card:last-child {
    border-bottom: none;
}

.event-card:hover {
    background-color: #fafafa;
}

.event-date-badge {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9b65, #ffd700);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    color: #000;
    line-height: 1.2;
}

.event-date-badge .event-month {
    font-size: 1.3rem;
    font-weight: 700;
}

.event-date-badge .event-year {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.event-date-badge .event-day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-venue {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #222;
}

.event-venue i {
    color: #ff9b65;
}

.event-program {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.event-city {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

.event-city i {
    color: #ccc;
}

@media (max-width: 576px) {
    .event-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }

    .event-date-badge {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.6rem 1rem;
        border-radius: 8px;
    }

    .event-date-badge .event-month {
        font-size: 1.1rem;
    }

    .event-date-badge .event-day {
        margin-top: 0;
    }
}

/* gallery video placeholders */

.video-placeholder {
    cursor: pointer;
    background-color: #000;
}

.video-placeholder .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-thumbnail {
    opacity: 0.8;
}

/* footer */

.page-footer {
    background-color: #1a1a1a;
    color: #ccc;
}

.page-footer h6 {
    color: #fff;
}

.page-footer a {
    color: #ff9b65;
    text-decoration: none;
}

.page-footer a:hover {
    color: #ffd700;
}