:root {
    --turquoise: #44AFD9;
    --brown: #65513D;
    --background: #F4F1EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--brown);
    font-family: Georgia, serif;
    line-height: 1.6;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation:
        heroFadeIn 2.5s ease forwards;
}


@keyframes heroFadeIn {

    from {

        opacity: 0;

        transform: scale(1.03);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }
}

.hero-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    width: min(620px, 50vw);
    height: auto;
    z-index: 10;
    opacity: 0;
    animation: logoReveal 3.0s ease forwards;
}


@keyframes logoReveal {

    from {
        opacity: 0;
        filter: blur(4px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.intro {
    background: var(--background);
    text-align: center;

    /* WAS 70px */
    padding-top: 25px;

    /* WAS 70px */
    padding-bottom: 60px;

    padding-left: 20px;
    padding-right: 20px;
}

.intro h1 {
    font-family: "Snell Roundhand", "Bradley Hand", cursive;

    /* Slightly smaller */
    font-size: clamp(1.8rem, 3vw, 3.2rem);

    font-weight: normal;
    color: var(--brown);

    /* WAS 60px */
    margin-bottom: 35px;
}

.intro p {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    /* More space between the two paragraphs */
    margin-bottom: 28px;

    /* WAS up to 1.9rem */
    font-size: clamp(1rem, 1.5vw, 1.35rem);

    /* WAS 600 */
    font-weight: 400;

    line-height: 1.7;

    color: var(--brown);
}

.scroll-indicator {
    width: 2px;

    /* Slightly shorter */
    height: 40px;

    background: var(--brown);

    /* WAS 40px */
    margin: 20px auto 0;
}

@media (max-width: 768px) {

    .hero {
        height: 70vh;
    }

    .hero-logo {
        top: 20px;
        left: 20px;
        width: 65vw;
    }

    .intro {
        padding-top: 15px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .intro h1 {
        margin-bottom: 25px;
    }

    .intro p {
        font-size: 1rem;
    }
}
.quote-section {

    background: #FFFFFF;

    padding: 50px 20px;
}

.quote-container {

    max-width: 900px;
    margin: 0 auto;

    text-align: left;
}

.quote-mark {

    width: 60px;
    height: auto;

    display: block;

    margin-bottom: 15px;
}

.quote {

    font-size: clamp(1.4rem, 2vw, 2rem);

    font-style: italic;

    line-height: 1.6;

    color: var(--brown);

    margin: 0;
}

.quote-source {

    display: block;

    margin-top: 25px;

    font-size: 1rem;

    color: var(--brown);

    font-style: normal;
}

.quote-role {

    display: block;

    margin-top: 4px;

    font-size: 0.9rem;

    opacity: 0.75;

    letter-spacing: 0.04em;
}

.quote span {
    display: block;
}

/* WATCH & LISTEN */

.videos-section {

    background: var(--background);

    padding: 50px 20px 80px;
}

.videos-container {

    max-width: 1200px;
    margin: 0 auto;

    text-align: center;
}

.videos-title {

    font-family: "Snell Roundhand",
                 "Bradley Hand",
                 cursive;

    font-size: clamp(2rem, 3vw, 3rem);

    color: var(--brown);

    margin-bottom: 25px;
}

.videos-intro {

    max-width: 700px;

    margin: 0 auto 50px auto;

    color: var(--brown);

    font-size: 1.1rem;

    line-height: 1.7;
}

.video-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px;

    max-width: 1000px;

    margin: 0 auto;
}

.video-card {

    text-align: center;
}

.short-container {

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 12px;

    background: #000;

    max-height: 550px
}

.short-container iframe {

    width: 100%;
    height: 100%;

    border: 0;
}

.video-title {

    margin-top: 18px;

    color: var(--brown);

    font-size: 1.2rem;

    font-weight: 600;
}

.video-subtitle {

    margin-top: 4px;

    color: var(--brown);

    opacity: 0.75;

    font-size: 0.95rem;
}

@media (max-width: 768px) {

    .video-grid {

        grid-template-columns: 1fr;
    }
}

/* PERFORMANCES */

.performances-section {

    background: #ffffff;

    padding: 50px 20px;
}

.performances-container {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;
}

.performances-title {

    font-family:
        "Snell Roundhand",
        "Bradley Hand",
        cursive;

    font-size: clamp(2rem, 3vw, 3rem);

    color: var(--brown);

    margin-bottom: 20px;
}

.performances-intro {

    max-width: 650px;

    margin: 0 auto 50px auto;

    color: var(--brown);

    line-height: 1.7;
}

.performances-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.performance-card {

    padding: 30px;

    background: var(--background);

    border-radius: 12px;

    text-align: left;

    transition: transform 0.2s ease;
}

.performance-card:hover {

    transform: translateY(-2px);
}

.performance-date {

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--turquoise);

    margin-bottom: 15px;
}

.performance-title {

    font-size: 1.3rem;

    font-weight: 600;

    color: var(--brown);

    margin-bottom: 8px;
}

.performance-location {

    color: var(--brown);

    opacity: 0.8;
}

@media (max-width: 768px) {

    .performances-grid {

        grid-template-columns: 1fr;
    }
}

/* CONTACT */

.contact-section {

    background: var(--background);

    padding: 50px 20px;

    text-align: center;
}

.contact-container {

    max-width: 900px;

    margin: 0 auto;
}

.contact-title {

    font-family:
        "Snell Roundhand",
        "Bradley Hand",
        cursive;

    font-size: clamp(2rem, 3vw, 3rem);

    color: var(--brown);

    margin-bottom: 20px;
}

.contact-intro {

    font-size: 1.1rem;

    color: var(--brown);

    margin-bottom: 40px;
}

.contact-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.contact-button {

    display: inline-block;

    padding: 14px 28px;

    background: var(--turquoise);

    color: white;

    text-decoration: none;

    border-radius: 6px;

    font-weight: 600;

    transition: all 0.2s ease;
}

.contact-button:hover {

    opacity: 0.9;

    transform: translateY(-2px);
}

/* FOOTER */

footer {

    width: 100%;

    background: #ffffff;

    text-align: center;

    padding: 30px 20px;

    color: var(--brown);

    opacity: 0.8;
}

.social-divider {

    width: 80px;
    height: 1px;

    background: var(--brown);

    opacity: 0.2;

    margin: 50px auto;
}

.social-title {

    font-family:
        "Snell Roundhand",
        "Bradley Hand",
        cursive;

    font-size: 1.8rem;

    color: var(--brown);

    margin-bottom: 25px;
}

.social-buttons {

    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;
}

.social-button {

    color: var(--brown);

    text-decoration: none;

    font-size: 1rem;

    font-weight: 500;

    transition: all 0.2s ease;
}

.social-button:hover {

    color: var(--turquoise);
}

/* MICHAEL PIPE ENDORSEMENT */

.endorsement-section {

    background: var(--background);

    padding: 0px 20px 40px 20px;
}

.endorsement-container {

    max-width: 800px;

    margin: 0 auto;

    text-align: left;
}

.endorsement-quote-mark {

    width: 50px;

    display: block;

    margin-bottom: 15px;
}

.endorsement-quote {

    color: var(--brown);

    font-size: clamp(1.15rem, 1.8vw, 1.45rem);

    font-style: italic;

    line-height: 1.7;

    margin: 0;
}

.endorsement-source {

    display: block;

    margin-top: 20px;

    color: var(--brown);

    font-style: normal;

    font-weight: 600;
}

.endorsement-role {

    display: block;

    margin-top: 3px;

    font-size: 0.9rem;

    opacity: 0.75;

    font-weight: 400;
}