:root {
    --font-sans: "Montserrat";
    --font-title: "Raleway";
    --bg-light: #ffe5dd;
    --bg-blue: #224272;
    --bg-yellow: #ffc550;
    --bg-pink: #fc3d6c;
}

body {
    font-family: var(--font-sans), sans-serif;
    margin: 0;
    color: #454545;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title), sans-serif;
}

section {
    position: relative;
}

.arte-btn {
    padding: 10px 25px;
    background-color: var(--bg-yellow);
    border-radius: 5px;
    transition: .4s ease-in-out;
    cursor: pointer;
}

.arte-btn:hover {
    background-color: var(--bg-pink);
    color: #fff;
}

.arte-btn:focus-visible {
    outline-offset: 0;
    outline: none;
}

/*HEADER*/
.header {
    position: absolute;
    padding: .75rem 2rem;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    color: #fff;
}

.nav-menu ul {
    gap: 1.5rem;
    justify-content: center;
}

.header-logo img {
    width: 220px;
    margin: 0 auto;
}

.nav-menu ul li {
    font-weight: 400;
}

/*FOOTER*/

footer {
    background-color: var(--bg-blue);
    color: #fff;
    padding: 120px 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    height: 70px;
    width: 1px;
    left: 50%;
    top: -35px;
    background-color: #fff;
    transform: translateX(-50%);
}

.footer-social ul li a {
    padding: .5rem;
    font-size: 18px;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--bg-blue);
    transition: .4s ease-in-out;
}


.footer-social ul li:hover a {
    background-color: var(--bg-blue);
    color: #fff;
}

.footer-bottom a {
    color: var(--bg-yellow);
}


/*HERO*/

.hero-swiper .swiper-slide {
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .35;
    pointer-events: none;
}

.hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h2 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
}


.hero-content a {
    padding: 10px 35px;
    border: 1px solid #fff;
    margin: 0 auto;
}

.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev {
    color: #fff;
}

.hero-swiper .swiper-button-next:after, .hero-swiper .swiper-button-prev:after {
    font-size: 25px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/*SERVICES*/

.service-item {
    border-radius: 1.5rem;
    overflow: hidden;
    padding-bottom: 20px;
    background-color: var(--bg-blue);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.service-cover {
    height: 350px;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    position: relative;
}

.service-cover::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    pointer-events: none;
    background-color: #000;
    opacity: .25;
    transition: .6s ease-in-out;
}

.service-item:hover .service-cover::before {
    height: 100%;
}

.service-title {
    padding-inline: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.service-title span:nth-of-type(2) {
    font-size: 25px;
}


.service-detail-content {
    padding: 4rem;
}

.service-detail-banner h1 {
    font-size: 30px;
}

.service-detail-content p {
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
    font-size: 25px;
}

.service-tag-wrapper {
    position: absolute;
    right: 40px;
    top: 40px;
    display: flex;
    gap: 10px;
    pointer-events: none;
}

.service-tag {
    padding: 5px 10px;
    text-align: center;
    border-radius: 1rem;
    color: #fff;
}

.service-tag.kids {
    background-color: var(--bg-pink);
}

.service-tag.teens {
    background-color: var(--bg-yellow);
    color: #000;
}

.filter-button-group .service-tag {
    padding: 10px 20px;
    border-radius: 20px;
}


/*BG*/
.bg-symbol {
    position: absolute;
    right: 40px;
    bottom: 60px;
    z-index: -1;
}

.bg-symbol img, .bg-symbol-2 img {
    width: 600px;
}


.bg-symbol-2 {
    position: absolute;
    left: 40px;
    top: 60px;
    z-index: -1;
}

.footer-symbol, .footer-symbol-2 {
    position: absolute;
}

.footer-symbol img, .footer-symbol-2 img {
    width: 400px;
}

.footer-symbol {
    left: 40px;
    top: 40px;
}

.footer-symbol-2 {
    right: 40px;
    bottom: 40px;
}

/* PAGE BANNER */

.page-banner {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.page-banner-content {
    position: relative;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 50px;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .35;
}

/*ABOUT*/
section.about p {
    margin-bottom: 1rem;
}

section.about h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-logo {
    margin-bottom: 20px;
}

.about-logo img {
    width: 300px;
}

ul.balloons {
    padding-left: 3rem;
}

ul.balloons li {
    margin-bottom: 1.5rem;
    position: relative;
}

ul.balloons li::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/static/img/balloons.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*EVENT CALENDAR*/

.event-calendar table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.event-calendar td {
    width: 50%;
}

.gc-calendar .gc-event {
    width: 100%;
}

.gc-event {
    cursor: pointer;
}

.event-modal h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-modal p {
    margin-bottom: .7rem;
}

/*GALLERY*/

.gallery-item {
    padding: 1rem;
}

.gallery-item a {
    display: block;
    overflow: hidden;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.gallery-item img {
    transition: .5s ease-in-out;
    width: 100%;
}

.gallery-item:hover a img {
    transform: scale(1.1);
}

.gallery-desc {
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background-color: var(--bg-yellow);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

[data-filter] {
    cursor: pointer;
}

.video-item iframe {
    width: 100%;
    height: 300px;
    padding: .75rem;
}

.gallery h1 {
    margin-bottom: 1.5rem;
    font-size: 40px;
}

/*CONTACT*/
.contact-info {
    color: #fff;
    padding: 3rem;
}

.contact-bg {
    position: relative;
    background-size: cover;
    background-position: center;
}

.contact-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .5;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 25px;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.contact-item i {
    color: var(--bg-yellow);
    font-size: 30px;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    padding: .5rem;
    margin-bottom: 1rem;
}

.form-group input, textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    padding: .25rem .25rem .25rem .5rem;
    border-radius: 8px;
}

textarea {
    resize: none;
}

.contact-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 60px;
}

.gmap iframe {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*NEWSFEED*/

.news-item {
    padding: 1rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 20px;
    display: block;
}


.news-cover {
    margin-bottom: 1rem;
}

.news-title h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: .4s ease-in-out;
}

.news-date {
    color: #5e5e5e;
    display: flex;
    gap: 1rem;
}

.news-item:hover .news-title h3 {
    color: #888888;
}

.news-body {
    margin-bottom: 30px;
}