.hero_section {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;

    padding: 0 4rem;
    gap: 4rem;
    background-color: var(--primary_colour);
}

.hero_section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero_section img:nth-child(1) {
    transform: rotate(-5deg) scale(0.85);
}

.hero_section img:nth-child(3) {
    transform: rotate(5deg) scale(0.85);
}

@media only screen and (max-width: 865px) {
    .hero_section {
        flex-direction: column;
        gap: 2rem;
        padding: 0 4rem;
        grid-template-columns: 1fr;
    }

    .hero_section img {
        display: none;
    }

    .hero_section img:nth-child(2) {
        display: block;
        flex: 1;
        object-fit: contain;
    }
}

.book_section img {
    height: 600px;
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 865px) {
    .book_section {
        gap: 3rem;
    }
}

.events_section {
    padding: 2rem 6rem;
    background-color: var(--primary_colour);
    gap: 3rem;
}

.events_section > div {
    flex: 1;
}

.events_section .left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.events_section .left h2 {
    color: var(--accent_colour);
}

.events_section .left img {
    height: 400px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0;
}

.events_section .left .align {
    display: flex;
    gap: 20px;
}

.events_section .left .align p {
    margin-bottom: 30px;
}

.events_section .left .align p:last-of-type {
    margin: 0;
}

.events_section .left .align a {
    color: var(--secondary_colour);
    text-decoration: underline;
    font-weight: 700;
}

.events_section .events_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events_section .event {
    background-color: var(--secondary_colour);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
    align-items: center;

    color: white;
}

.events_section .event:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}

.events_section .event .content {
    gap: 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.events_section .event .content h5 {
    font-size: 25px;
    font-weight: 600;
}

.events_section .event .content p {
    font-size: 16px;
    color: white;
}

.events_section .event .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--accent_colour);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

.events_section .event .date h5 {
    font-weight: 500;
    font-size: 22px;
}

.events_section .event .time h5 {
    font-family: "Cloud Soft";
    margin-right: 10px;
    font-size: 18px;
}

@media only screen and (max-width: 865px) {
    .events_section {
        padding: 1rem;
    }

    .events_section .event {
        width: calc(100% - 2rem);
    }

    .events_section .left {
        align-items: center;
    }

    .events_section .left img {
        display: none;
    }

    .events_section .left .align {
        flex-direction: column;
    }

    .events_section .event .content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.about_section h1 {
    font-size: 72px;
    line-height: 0.8;
}

.about_section .polaroid {
    height: 500px;
    transform: rotate(2deg);
}

@media only screen and (max-width: 865px) {
    .about_section {
        padding: 4rem 2rem;
        gap: 30px;
    }

    .about_section .polaroid {
        height: auto;
        width: 100%;
    }
}
