
    :root {
        --primaryColor1: #2f323b;
    }

    body {
        margin: 0;
        font-family: Cabin, sans-serif;
    }

    /* Header Styles */
    .chord--header-simple {
        background-color: #2f323b;
        padding: 0;
    }

    .nav__container {
        max-width: 100%;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        background-color: #2f323b;
    }

    .nav__btns {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav__name {
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
        font-family: "Alfa Slab One", serif;
    }

    .nav__btn {
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        display: none;
    }

    .nav__links {
        display: flex;
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
    }

    .nav__link {
        color: #fff;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

    .nav__link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav__link i {
        margin-right: 0.5rem;
    }

    /* Hero Section */
    .chord--hero-full {
        position: relative;
        height: 50vh;
        min-height: 300px;
    }

    .hero {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: 0% 3.74%;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__container {
        text-align: center;
        color: white;
    }

    /* Simple Section */
    .simple-chord--wrapper {
        position: relative;
        padding: 4rem 2rem;
    }

    .bg.sib {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #2f323b;
    }

    .simple-chord--inner {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        z-index: 1;
    }

    .h-font.h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-family: "Alfa Slab One", serif;
        color: #fffafa;
    }

    .simple-chord--text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #fff;
        font-family: Cabin, sans-serif;
    }

    .simple-chord--text a {
        color: rgb(255, 209, 209);
        text-decoration: none;
    }

    .simple-chord--text a:hover {
        text-decoration: underline;
    }

    /* Photo Grid */
    .photogrid-component {
        position: relative;
        padding: 2rem;
    }

    .photogrid-component--flexbox-container {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
         z-index: 1;
    }

    .photogrid-component--flexbox-container a {
        flex: 1;
        min-width: 200px;
        aspect-ratio: 1 / 1;   /* or 3/2, 4/3, whatever looks best */
        display: block;
    }

    .photogrid-component--flexbox-container .bg {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
    }

    .photogrid-component--flexbox-container .bg:hover {
        transform: scale(1.05);
    }

    /* Footer */
    .chord--footer {
        background-color: #2f323b;
        padding: 2rem;
        color: #fff;
    }

    .chord--footer__wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .chord--footer__copyright {
        flex: 1;
        font-family: Cabin, sans-serif;
    }

    .chord--footer__content {
        flex: 1;
    }

    .inline-list {
        display: flex;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
    }

    .chord--footer__link {
        color: #fff;
        text-decoration: none;
    }

    .chord--footer__link:hover {
        color: rgb(255, 209, 209);
    }

    .chord--footer__poweredby {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .chord--footer__poweredby a {
        font-family: Cabin, sans-serif;
        color: rgb(255, 209, 209);
        text-decoration: none;
    }
    /* Title with Text Section */
    .chord--title-with-text {
        padding: 4rem 2rem;
        background-color: #2f323b;
    }

    .chord--title-with-text__content {
        max-width: 800px;
        margin: 0 auto;
    }

    .chord--title-with-text__title-wrapper {
        margin-bottom: 2rem;
    }

    .chord--title-with-text__title {
        font-size: 2.5rem;
        margin: 0 0 1rem 0;
        font-family: "Alfa Slab One", serif;
        color: #fffafa;
    }


    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav__links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #2f323b;
            flex-direction: column;
            padding: 1rem;
        }

        .nav__links.active {
            display: flex;
        }

        .nav__btn {
            display: block;
        }

        .nav__list {
            flex-direction: column;
            gap: 0;
        }

        .photogrid-component--flexbox-container {
            flex-direction: column;
        }

        .photogrid-component--flexbox-container a {
            min-width: 100%;
        }

        .chord--footer__wrapper {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .inline-list {
            justify-content: center;
        }
    }
