.merri-300 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}

.merri-400 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

a {
    color: #d4af37;
    text-decoration: underline;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.navbar {
    background: rgba(0, 0, 0, 0.9);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-piano.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Charm', cursive;
    font-size: 5rem;
    color: #d4af37;
    /* Gold accent */
}

section {
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.event-card {
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 15px;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    border: none;
    font-weight: bold;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
}

p {
    line-height: 2;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.profile-photo {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 576px) {
    .profile-photo {
        max-width: 400px;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 4rem;
    }
}

.w-33 {
    width: 33.333%;
}

.carousel-item iframe,
.carousel-item img {
    object-fit: cover;
    height: 200px;
}

.media-box {

    height: 220px;
    /* 👈 same height for all */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Images */
.gallery-media img,
img.gallery-media {

    height: 100%;
    object-fit: cover;
    /* 👈 keeps aspect ratio, fills box */
    display: block;
}

/* Iframes (video) */
iframe.gallery-media {

    height: 100%;
    border: 0;
}

/* Swiper polish */
.swiper-slide {
    height: auto;
}


.text-gri {
    --bs-text-opacity: 1;
    color: #525252 !important;
}