/* =========================================================
   MARY OYOO WEBSITE
   WARM PROFESSIONAL EDUCATOR DESIGN
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --cream: #FBF7F0;
    --cream-dark: #F3ECE1;
    --white: #FFFFFF;

    --espresso: #3B2A24;
    --espresso-light: #634A40;

    --terracotta: #A9543A;
    --terracotta-dark: #8E432F;
    --terracotta-light: #C77A61;

    --sage: #7A8B6A;
    --sage-light: #AAB79D;

    --gold: #C99A4A;
    --gold-light: #E4C98D;

    --border: #E3D8CA;

    --shadow: 0 18px 45px rgba(59, 42, 36, 0.10);
    --shadow-small: 0 8px 24px rgba(59, 42, 36, 0.08);

    --radius: 18px;

    --max-width: 1180px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

ul {
    list-style: none;
}


/* =========================================================
   3. GENERAL LAYOUT
========================================================= */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.section-warm {
    background: var(--cream-dark);
}

.centered {
    text-align: center;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
    color: var(--espresso);
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.45rem;
}

p {
    color: var(--espresso-light);
}


/* =========================================================
   5. EYEBROW LABELS
========================================================= */

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--terracotta);
    text-transform: uppercase;
}


/* =========================================================
   6. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(251, 247, 240, 0.94);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(59, 42, 36, 0.08);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--terracotta);
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 0.92rem;
    letter-spacing: 1px;
}

.logo-text small {
    margin-top: 4px;

    font-size: 0.66rem;
    color: var(--sage);

    letter-spacing: 0.4px;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    position: relative;

    font-size: 0.82rem;
    font-weight: 600;

    color: var(--espresso-light);

    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--terracotta);

    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--terracotta);
}

.main-nav a:hover::after {
    width: 100%;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    color: var(--espresso);
    font-size: 1.7rem;

    cursor: pointer;
}


/* =========================================================
   7. HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0 100px;

    background:
        radial-gradient(circle at 80% 20%,
        rgba(201, 154, 74, 0.12),
        transparent 25%),

        radial-gradient(circle at 15% 80%,
        rgba(122, 139, 106, 0.12),
        transparent 25%),

        var(--cream);
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.95fr;

    align-items: center;

    gap: 80px;
}

.hero-content {
    max-width: 620px;
}

.hero h1 span {
    display: block;
    color: var(--terracotta);
}

.hero-role {
    margin-top: 20px;

    font-size: 1.08rem;
    font-weight: 700;

    color: var(--sage);

    letter-spacing: 0.4px;
}

.hero-text {
    max-width: 560px;

    margin-top: 22px;

    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);

    box-shadow: 0 10px 25px rgba(169, 84, 58, 0.24);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--white);

    color: var(--espresso);
}

.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}


/* HERO QUOTE */

.hero-quote {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 35px;
}

.hero-quote span {
    width: 35px;
    height: 2px;

    background: var(--gold);
}

.hero-quote em {
    font-family: "Playfair Display", serif;

    font-size: 1.05rem;

    color: var(--espresso);
}


/* HERO PHOTOS */

.hero-visual {
    position: relative;

    min-height: 580px;
}

.hero-photo-main {
    position: absolute;

    top: 0;
    right: 0;

    width: 82%;
    height: 500px;

    overflow: hidden;

    border-radius: 120px 20px 20px 20px;

    box-shadow: var(--shadow);
}

.hero-photo-main img {
    height: 100%;
    object-fit: cover;
}


.hero-photo-small {
    position: absolute;

    left: 0;
    bottom: 10px;

    width: 43%;
    height: 245px;

    overflow: hidden;

    border: 8px solid var(--cream);

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.hero-photo-small img {
    height: 100%;
    object-fit: cover;
}


/* HERO BADGE */

.hero-badge {
    position: absolute;

    right: 3%;
    bottom: 35px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border-radius: 50%;

    background: var(--sage);

    color: var(--white);

    box-shadow: var(--shadow);
}

.hero-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    line-height: 1;
}

.hero-badge span {
    margin-top: 6px;

    font-size: 0.68rem;
    font-weight: 600;

    line-height: 1.25;
}


/* =========================================================
   8. INTRO STRIP
========================================================= */

.intro-strip {
    background: var(--espresso);
    color: var(--white);
}

.intro-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.intro-grid > div {
    padding: 30px 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-grid > div:last-child {
    border-right: none;
}

.intro-grid strong {
    display: block;

    font-size: 0.82rem;
    color: var(--gold-light);

    letter-spacing: 0.3px;
}

.intro-grid span {
    display: block;

    margin-top: 5px;

    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   9. SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-heading > p:last-child {
    margin-top: 20px;
}


/* =========================================================
   10. ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    gap: 75px;

    align-items: center;
}

.about-photo {
    height: 620px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.about-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content > p + p {
    margin-top: 18px;
}

.education-box {
    margin-top: 35px;

    padding: 26px 30px;

    background: var(--cream-dark);

    border-left: 4px solid var(--terracotta);

    border-radius: 0 15px 15px 0;
}

.education-box h3 {
    font-size: 1.25rem;

    margin-bottom: 16px;
}

.education-box li {
    position: relative;

    padding-left: 22px;

    margin-bottom: 10px;

    color: var(--espresso-light);

    font-size: 0.9rem;
}

.education-box li::before {
    content: "•";

    position: absolute;
    left: 0;

    color: var(--terracotta);

    font-size: 1.3rem;
}


/* =========================================================
   11. SUPPORT CARDS
========================================================= */

.support-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.support-card {
    position: relative;

    padding: 34px 30px;

    min-height: 230px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.card-number {
    display: inline-block;

    margin-bottom: 28px;

    font-size: 0.72rem;
    font-weight: 700;

    color: var(--terracotta);

    letter-spacing: 1px;
}

.support-card p {
    margin-top: 12px;

    font-size: 0.9rem;
}


/* =========================================================
   12. EXPERIENCE TIMELINE
========================================================= */

.timeline {
    position: relative;

    max-width: 850px;

    margin: 0 auto;

    padding-left: 45px;
}

.timeline::before {
    content: "";

    position: absolute;

    left: 13px;
    top: 5px;
    bottom: 5px;

    width: 2px;

    background: var(--gold-light);
}

.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 0 0 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--terracotta);

    color: var(--white);

    font-size: 0.75rem;
    font-weight: 700;
}

.timeline-item h3 {
    margin-top: 5px;
}

.timeline-item p {
    margin-top: 8px;
    max-width: 680px;
}


/* =========================================================
   13. SCHEDULE TABLE
========================================================= */

.schedule-wrapper {
    overflow-x: auto;

    background: var(--white);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);

    border: 1px solid var(--border);
}

.schedule-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 780px;
}

.schedule-table th {
    padding: 17px 15px;

    text-align: left;

    background: var(--espresso);

    color: var(--white);

    font-size: 0.76rem;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.schedule-table td {
    padding: 17px 15px;

    border-bottom: 1px solid var(--border);

    font-size: 0.86rem;

    color: var(--espresso-light);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: #FCFAF7;
}

.schedule-table td:first-child {
    font-weight: 700;
    color: var(--terracotta);
}

.schedule-notes {
    display: flex;

    gap: 18px;

    margin-top: 18px;
}

.schedule-notes > div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 999px;
}

.schedule-notes strong {
    font-size: 0.76rem;
}

.schedule-notes span {
    font-size: 0.8rem;
    color: var(--sage);
}


/* =========================================================
   14. COURSES
========================================================= */

.course-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    max-width: 900px;
}

.course-card {
    position: relative;

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.course-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    border-radius: 16px;

    background: var(--cream-dark);

    color: var(--terracotta);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.course-card p {
    margin-top: 13px;

    font-size: 0.9rem;
}

.course-links {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;
}

.text-link {
    display: inline-flex;
    align-items: center;

    font-size: 0.8rem;
    font-weight: 700;

    color: var(--terracotta);

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.text-link:hover {
    color: var(--terracotta-dark);

    transform: translateX(3px);
}


/* =========================================================
   15. CLASSROOM FEATURE
========================================================= */

.classroom-feature {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 55px;

    align-items: center;
}

.classroom-image {
    height: 490px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.classroom-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.small-label {
    display: block;

    margin-bottom: 18px;

    font-size: 0.7rem;
    font-weight: 700;

    color: var(--terracotta);

    letter-spacing: 1.5px;
}

.classroom-content p + p {
    margin-top: 16px;
}

.classroom-content .small-label {
    margin-bottom: 14px;
}


/* CLASSROOM PHOTO ROW */

.photo-row {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 24px;
}

.photo-card {
    height: 260px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: var(--shadow-small);
}

.photo-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   16. EXPECTATIONS
========================================================= */

.expectations-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.expectation-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    align-items: start;

    padding: 22px 24px;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: 15px;
}

.expectation-item span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--cream-dark);

    color: var(--terracotta);

    font-size: 0.7rem;
    font-weight: 800;
}

.expectation-item p {
    font-size: 0.86rem;
}


/* =========================================================
   17. RESOURCES
========================================================= */

.resource-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.resource-card {
    position: relative;

    padding: 30px;

    min-height: 210px;

    display: block;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-6px);

    border-color: var(--gold);

    box-shadow: var(--shadow-small);
}

.resource-card > span {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 800;
}

.resource-card h3 {
    font-size: 1.25rem;
}

.resource-card p {
    margin-top: 9px;

    font-size: 0.82rem;
}


/* =========================================================
   18. PHONE & AI INFORMATION
========================================================= */

.two-column-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.info-block {
    padding: 45px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-small);
}

.info-block h2 {
    font-size: 2.2rem;
}

.info-block p {
    margin-top: 15px;

    font-size: 0.9rem;
}

.info-block .text-link {
    margin-top: 22px;
}


/* =========================================================
   19. COMMUNITY GALLERY
========================================================= */

/* =========================================================
   19. COMMUNITY GALLERY
========================================================= */

.community-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.community-gallery > div {
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-small);
    background: var(--cream-dark);
}

.community-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: var(--cream-dark);
    transition: transform 0.6s ease;
}

.community-gallery > div:hover img {
    transform: scale(1.03);
}

.gallery-large {
    grid-row: auto;
    grid-column: auto;
}

/* =========================================================
   20. CONTACT
========================================================= */

.contact-section {
    padding: 105px 0;

    background: var(--espresso);

    color: var(--white);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-intro h2 {
    color: var(--white);
}

.contact-intro p:last-child {
    max-width: 500px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.72);
}

.contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}

.contact-item {
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-item span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-light);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.contact-item a,
.contact-item strong {
    color: var(--white);

    font-size: 0.92rem;
}

.contact-item a:hover {
    color: var(--gold-light);
}

.contact-item p {
    margin-top: 5px;

    font-size: 0.82rem;

    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   21. FOOTER
========================================================= */

.site-footer {
    background: #2D211C;

    color: var(--white);

    padding: 45px 0 25px;
}

.footer-content {
    display: grid;

    grid-template-columns: 1fr auto;
    gap: 25px;

    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-family: "Playfair Display", serif;

    font-size: 1.3rem;
}

.footer-brand span {
    margin-top: 4px;

    font-size: 0.72rem;

    color: rgba(255, 255, 255, 0.58);
}

.footer-tagline {
    color: var(--gold-light);

    font-family: "Playfair Display", serif;
}

.footer-bottom {
    grid-column: 1 / -1;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.45);

    font-size: 0.68rem;
}


/* =========================================================
   22. RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.75rem;
    }

    .hero-grid {
        gap: 45px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-gallery {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 300px 220px 220px;
    }

    .gallery-large {
        grid-row: auto;

        grid-column: 1 / 3;
    }

}


/* =========================================================
   23. RESPONSIVE MOBILE
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 60px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: var(--cream);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow-small);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 5px;

        font-size: 0.9rem;
    }

    .hero {
        padding: 65px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-photo-main {
        width: 82%;
        height: 430px;
    }

    .hero-photo-small {
        height: 210px;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro-grid > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-grid,
    .classroom-feature,
    .two-column-info,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-photo {
        height: 500px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .photo-row {
        grid-template-columns: 1fr 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-tagline {
        order: 2;
    }

    .footer-bottom {
        grid-column: auto;

        order: 3;
    }

}


/* =========================================================
   24. SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .logo-text small {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-photo-main {
        width: 86%;
        height: 360px;
    }

    .hero-photo-small {
        width: 48%;
        height: 175px;

        border-width: 6px;
    }

    .hero-badge {
        width: 100px;
        height: 100px;

        right: 0;

        bottom: 25px;
    }

    .hero-badge strong {
        font-size: 1.7rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid > div {
        border-right: none;
    }

    .support-grid,
    .resource-grid,
    .photo-row {
        grid-template-columns: 1fr;
    }

    .photo-card {
        height: 300px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;

        gap: 15px;
    }

    .schedule-notes {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .community-gallery {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(4, 260px);
    }

    .gallery-large {
        grid-column: auto;
    }

}
/* =========================================================
   BEREA MIDDLE SCHOOL LOGO
========================================================= */

body {
    position: relative;
}

.bms-logo {
    position: absolute;
    top: 105px;
    left: 35px;

    width: 190px;
    height: 190px;

    object-fit: contain;
    border-radius: 50%;

    opacity: 0.10;

    pointer-events: none;
    z-index: 0;
}