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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", Arial, sans-serif;
    background: #fffaf5;
    color: #292420;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: "Libre Baskerville", Baskerville, Georgia, serif;
    font-weight: 700;
}

button,
input,
textarea {
    font-family: "Barlow", Arial, sans-serif;
}

header {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, #ffd9c9, transparent 40%),
        linear-gradient(135deg, #fff7ed, #fce7f3);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 30px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 100;
}

.logo {
    color: #292420;
    font-size: 25px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links > a,
.drop-button {
    color: #292420;
    font-family: "Barlow", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}


.nav-links > a:hover,
.drop-button:hover {
    opacity: 0.65;
}

.drop-button span {
    margin-left: 5px;
    font-size: 17px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 175px;
    padding: 10px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #292420;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #fff1eb;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hero {
    max-width: 900px;
    margin: auto;
    padding: 150px 24px 100px;
}

.label {
    color: #b44c67;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h2 {
    max-width: 750px;
    font-size: clamp(48px, 8vw, 85px);
    line-height: 1;
    margin-bottom: 30px;
}

.hero > p:not(.label) {
    max-width: 650px;
    font-size: 20px;
    margin-bottom: 35px;
}

.button {
    display: inline-block;
    padding: 14px 25px;
    background: #292420;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
}

main section {
    max-width: 1100px;
    margin: auto;
    padding: 100px 24px;
}

main h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

main section > p {
    max-width: 750px;
    font-size: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.card {
    padding: 32px;
    background: white;
    border: 1px solid #eadfd8;
    border-radius: 20px;
}

.card h3 {
    margin-bottom: 12px;
}

#join {
    text-align: center;
}

#join p {
    margin: 0 auto 30px;
}

footer {
    padding: 30px;
    text-align: center;
    background: #292420;
    color: white;
}
    .hero {
        padding-top: 100px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
#about > p {
    margin-bottom: 35px !important;
}

#about > p:last-child {
    margin-bottom: 0 !important;
}
.footer-credit {
    font-size: 13px;
}
.footer-credit {
    font-size: 10px;
}
.footer-credit {
    font-size: 10px;
    line-height: 1.3;
}
/* Large project slideshow */

.project-showcase {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    margin: 35px auto 0;
    overflow: hidden;

    background: #292420;
    border-radius: 20px;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.5s ease-in-out,
        visibility 1.5s ease-in-out;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.showcase-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;

    object-fit: contain;
}
.showcase-slide h3 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    margin: 0;
    padding: 45px 30px 22px;

    color: white;
    font-size: 27px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.85)
    );
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    color: white;
    background: rgba(0, 0, 0, 0.55);

    font-size: 24px;
    cursor: pointer;

    transform: translateY(-50%);
}

.showcase-arrow:hover {
    background: rgba(0, 0, 0, 0.85);
}

.showcase-previous {
    left: 18px;
}

.showcase-next {
    right: 18px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;

    max-width: 1000px;
    margin: 18px auto 0;
}

.showcase-dot {
    width: 11px;
    height: 11px;

    border: none;
    border-radius: 50%;

    background: #c8bdb7;
    cursor: pointer;
}

.showcase-dot.active {
    background: #292420;
}

@media (max-width: 700px) {
    .project-showcase {
        aspect-ratio: 4 / 3;
    }

    .showcase-slide h3 {
        padding: 35px 20px 18px;
        font-size: 21px;
    }

    .showcase-arrow {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }
}
.showcase-arrow {
    z-index: 20;
    pointer-events: auto;
}

.showcase-slide h3 {
    pointer-events: none;
}
/* Gallery page category sections */

.gallery-category {
    margin-top: 65px;
}

.gallery-category:first-of-type {
    margin-top: 35px;
}

.category-title {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

/* Smaller gallery slideshow */

.category-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    margin: 20px auto 0;
    overflow: hidden;

    background: #292420;
    border-radius: 18px;
}

.category-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.2s ease-in-out,
        visibility 1.2s ease-in-out;
}

.category-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.category-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-slide h3 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    margin: 0;
    padding: 40px 24px 18px;

    color: white;
    font-size: 22px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.88)
    );

    pointer-events: none;
}

/* Gallery slideshow arrows */

.category-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    color: white;
    background: rgba(0, 0, 0, 0.6);

    font-size: 20px;
    cursor: pointer;

    transform: translateY(-50%);
}

.category-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

.category-previous {
    left: 15px;
}

.category-next {
    right: 15px;
}

/* Gallery slideshow dots */

.category-dots {
    display: flex;
    justify-content: center;
    gap: 9px;

    margin-top: 14px;
}

.category-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #c8bdb7;
    cursor: pointer;
}

.category-dot.active {
    background: #292420;
}

/* Events section */

#events {
    margin-top: 30px;
    border-top: 1px solid #eadfd8;
}

/* Gallery mobile layout */

@media (max-width: 700px) {
    .gallery-category {
        margin-top: 45px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-showcase {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .category-slide h3 {
        padding: 32px 18px 15px;
        font-size: 19px;
    }

    .category-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}
/* Page and navigation fading */

body {
    animation: page-fade-in 1s ease both;
    transition: opacity 0.4s ease;
}

body.page-leaving {
    opacity: 0;
}

.section-fade {
    animation: section-fade-in 0.7s ease;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes section-fade-in {
    from {
        opacity: 0.15;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Two gallery categories per row */

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 60px 35px;
    margin-top: 45px;
}

.category-grid .gallery-category,
.category-grid .gallery-category:first-of-type {
    min-width: 0;
    margin: 0;
}

.category-title {
    margin-bottom: 18px;
    text-align: center;
    font-size: 26px;
}

.category-showcase {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    margin: 0;
}

/* One category per row on smaller screens */

@media (max-width: 800px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .category-showcase {
        max-width: 650px;
        margin: 0 auto;
    }
}
.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #292420;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 700px) {
    .navbar {
        padding: 25px 24px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        margin-top: 20px;
        padding: 18px;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        background: white;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links > a,
    .drop-button {
        display: block;
        width: 100%;
        padding: 12px 10px;
        text-align: left;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        position: static;

        width: 100%;
        margin: 0;
        padding: 4px 0 4px 18px;

        background: transparent;
        box-shadow: none;
    }

    .dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    /* Disable desktop hover behavior on mobile */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.mobile-open:hover .dropdown-menu {
        display: block;
    }
}
/* Contact form */

.contact-toggle {
    border: none;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
}

.contact-panel {
    width: 100%;
    max-width: 900px;
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-15px);

    transition:
        max-height 0.7s ease,
        opacity 0.5s ease,
        transform 0.5s ease,
        margin-top 0.5s ease;
}

.contact-panel.open {
    max-height: 800px;
    margin-top: 35px;

    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    padding: 45px;
    text-align: left;

    background: #f0eeee;
    border-radius: 18px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
}

.contact-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 17px 18px;

    border: 1px solid #cbc7c5;
    border-radius: 9px;

    background: transparent;
    color: #292420;

    font: inherit;
}

.contact-form textarea {
    margin-bottom: 22px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #b44c67;
    outline-offset: 2px;
}

@media (max-width: 700px) {
    .contact-form {
        padding: 25px;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }
}
.form-status {
    min-height: 24px;
    margin-top: 18px;
    color: #b44c67;
    font-weight: 600;
}

.form-success {
    padding: 55px 25px;
    text-align: center;
    animation: form-success-fade 0.6s ease;
}

.form-success h3 {
    margin-bottom: 12px;
    font-size: 34px;
}

.form-success p {
    max-width: 550px;
    margin: 0 auto;
    font-size: 18px;
}

@keyframes form-success-fade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button:disabled {
    cursor: wait;
    opacity: 0.7;
}
.about-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    column-gap: 80px;
}

.about-text {
    min-width: 0;
}

.about-text h2 {
    font-size: 56px;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 380px;
    justify-self: end;
    align-self: center;
    transform: translateX(55px);
}

.about-image img {
    display: block;
    width: 380px;
    height: auto;
    max-width: none;
}

@media (max-width: 700px) {
    .about-header {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .about-image {
        width: 100%;
        justify-self: center;
        transform: none;
    }

    .about-image img {
        width: 230px;
        max-width: 100%;
        margin: 0 auto;
    }

    .about-text h2 {
        font-size: 42px;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.7;
    }
}
.join-qr-codes {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 55px;
    margin: 40px auto 35px;
}

.join-qr-item {
    text-align: center;
}

.join-qr-item img {
    display: block;
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin: 0 auto 12px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.join-qr-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .join-qr-codes {
        gap: 16px;
    }

    .join-qr-item img {
        width: 150px;
        height: 150px;
        padding: 8px;
    }

    .join-qr-item p {
        font-size: 15px;
    }
}
.officer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.officer-card {
    padding: 32px;
    text-align: center;
    background: white;
    border: 1px solid #eadfd8;
    border-radius: 22px;
}

.officer-card img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.TiffanyPhoto {
    object-position: center 20%;
}

.EllaPhoto {
    object-position: 45% 18%;
}

.TrinityPhoto {
    object-position: center 20%;
}

.YulisaPhotoFrame {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.YulisaPhotoFrame .YulisaPhoto {
    width: 210px !important;
    height: 210px !important;
    max-width: none;
    object-fit: cover;
    border-radius: 0 !important;
    margin: 0 !important;

    transform: translateX(-15px);
}

.officer-card h3 {
    margin-bottom: 6px;
    font-size: 25px;
}

.officer-role {
    margin-bottom: 18px;
    color: #b44c67;
    font-weight: 700;
}

@media (max-width: 700px) {
    .officer-grid {
        grid-template-columns: 1fr;
    }

    .officer-card img {
        width: 160px;
        height: 160px;
    }
}
.other-officers-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 24px 100px;
}

.other-officers-section h2 {
    margin-bottom: 35px;
    font-size: 42px;
}

.officer-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.officer-carousel-window {
    width: 100%;
    overflow: hidden;
}

.officer-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
}

.small-officer-card {
    flex: 0 0 calc((100% - 48px) / 3);
    padding: 28px 20px;
    text-align: center;

    background: white;
    border: 1px solid #eadfd8;
    border-radius: 20px;
}

.small-officer-card img {
    width: 135px;
    height: 135px;
    margin-bottom: 18px;

    object-fit: cover;
    border-radius: 50%;
}

.small-officer-card h3 {
    margin-bottom: 6px;
    font-size: 22px;
}

.small-officer-card .officer-role {
    margin: 0;
    color: #b44c67;
    font-weight: 700;
}

.officer-carousel-arrow {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    color: white;
    background: #292420;

    font-size: 22px;
    cursor: pointer;
}

.officer-carousel-arrow:hover {
    opacity: 0.75;
}

.officer-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.officer-carousel-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #c8bdb7;
    cursor: pointer;
}

.officer-carousel-dot.active {
    background: #292420;
}

@media (max-width: 850px) {
    .small-officer-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .small-officer-card {
        flex-basis: 100%;
    }

    .officer-carousel {
        gap: 8px;
    }

    .officer-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}
.officer-work-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px 110px;
}

.officer-work-section h2 {
    margin-bottom: 12px;
    font-size: 42px;
}

.officer-work-intro {
    margin-bottom: 35px;
    font-size: 18px;
}

.officer-work-showcase {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;

    background: #292420;
    border-radius: 24px;
}

.officer-work-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.officer-work-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.officer-work-slide img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    display: block;
}

.officer-work-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 70px 34px 26px;

    color: white;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.9)
    );
}

.officer-work-caption h3 {
    margin-bottom: 4px;
    font-size: 28px;
}

.officer-work-caption p {
    margin: 0;
    font-size: 17px;
}

.officer-work-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    color: white;
    background: rgba(0, 0, 0, 0.6);

    font-size: 23px;
    cursor: pointer;
    transform: translateY(-50%);
}

.officer-work-previous {
    left: 20px;
}

.officer-work-next {
    right: 20px;
}

.officer-work-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.officer-work-dot {
    width: 11px;
    height: 11px;

    border: none;
    border-radius: 50%;

    background: #c8bdb7;
    cursor: pointer;
}

.officer-work-dot.active {
    background: #292420;
}

@media (max-width: 700px) {
    .officer-work-showcase {
        min-height: 420px;
    }

    .officer-work-slide img {
        height: 420px;
    }

    .officer-work-caption {
        padding: 55px 22px 20px;
    }

    .officer-work-caption h3 {
        font-size: 23px;
    }
}
.events-showcase {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 35px auto 0;
    overflow: hidden;

    background: #292420;
    border-radius: 20px;
}

.events-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.events-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.events-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.events-slide h3 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    margin: 0;
    padding: 55px 28px 22px;

    color: white;
    font-size: 25px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.88)
    );

    pointer-events: none;
}

.events-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    color: white;
    background: rgba(0, 0, 0, 0.6);

    font-size: 22px;
    cursor: pointer;

    transform: translateY(-50%);
}

.events-previous {
    left: 18px;
}

.events-next {
    right: 18px;
}

.events-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.events-dot {
    width: 11px;
    height: 11px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #c8bdb7;
    cursor: pointer;
}

.events-dot.active {
    background: #292420;
}

@media (max-width: 700px) {
    .events-showcase {
        aspect-ratio: 4 / 3;
    }

    .events-slide h3 {
        font-size: 20px;
        padding: 40px 20px 17px;
    }

    .events-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* Events slideshow */

.events-showcase {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 35px auto 0;
    overflow: hidden;
    background: #292420;
    border-radius: 20px;
}

.events-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.events-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.events-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.events-slide h3 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    margin: 0;
    padding: 55px 28px 22px;

    color: white;
    font-size: 25px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.88)
    );

    pointer-events: none;
}

.events-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    color: white;
    background: rgba(0, 0, 0, 0.6);

    font-size: 22px;
    cursor: pointer;

    transform: translateY(-50%);
}

.events-previous {
    left: 18px;
}

.events-next {
    right: 18px;
}

.events-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.events-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c8bdb7;
    cursor: pointer;
}

.events-dot.active {
    background: #292420;
}

@media (max-width: 700px) {
    .events-showcase {
        aspect-ratio: 4 / 3;
    }

    .events-slide h3 {
        font-size: 20px;
        padding: 40px 20px 17px;
    }

    .events-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
.join-mascot {
    display: block;
    width: 380px;
    max-width: 85%;
    height: auto;
    margin: -60px auto 15px;
}

@media (max-width: 700px) {
    .join-mascot {
        width: 180px;
        max-width: 55vw;
        margin: -10px auto 20px;
    }
}

/*contact form style*/
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.contact-row label,
.google-login-field {
    width: 100%;
}

.contact-row label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.google-login-field {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

#g_id_onload {
    display: none;
}

.signed-email-box {
    margin: 0;
}

.google-login-field > span,
.contact-row label span {
    font-size: 15px;
    color: #4b403c;
    font-weight: 500;
}

.google-login-box {
    background: white;
    border: 1px solid #cfc6c0;
    border-radius: 8px;
    min-height: 56px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.google-login-box .g_id_signin {
    width: 100%;
}

#signedInEmail {
    margin: 0;
    min-height: 18px;
    font-size: 14px;
    color: #b44c67;
}

#send-message-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.google-login-field {
    width: 100%;
}

.google-login-field .g_id_signin {
    width: 100%;
}

#signedInEmail {
    margin: 6px 0 0;
    font-size: 13px;
    color: #c44c6a;
}

.google-login-field {
    width: 100%;
}

.google-login-field .g_id_signin {
    width: 100%;
}

.signed-email-box {
    height: 56px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #bfb8b2;
    border-radius: 8px;
    background: #f7f7f7;
    color: #7b7b7b;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    font-size: 15px;
}

.signed-check {
    color: #5f8a68;
    font-weight: 700;
    font-size: 16px;
}

.signed-email-box[hidden] {
    display: none !important;
}

@media (max-width: 700px) {

    .contact-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px;
        width: 100%;
    }

    .contact-row > label,
    .google-login-field {
        width: 100% !important;
        min-width: 0 !important;
    }

    .contact-row input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
    }

    #googleButtonWrap {
        width: 100%;
        overflow: hidden;
    }

    .google-login-field .g_id_signin {
        width: 100%;
    }
}

/* locked name for contact form */

#name-input:disabled {
    background: #f3f1f1;
    color: #aaa;
    cursor: not-allowed;
}

/* contact us bold */
#name-input::placeholder {
    color: #999;
    font-style: italic;
}