* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

.navbar, .footer {
    padding: 0 10%;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    height: 100px;
    background-color: rgba(0, 0, 0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
}

.nav_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.logo img {
    width: 90px;
}

.nav_menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.5s ease;
}

.nav_menu a:hover {
    color: rgb(189, 189, 189);
}

.navbar a.logo {
    margin-right: auto;
    border: 0px;
    padding: 0;
}

.nav_menu a.active {
    color: rgb(255, 154, 152);
    text-decoration-line: underline;
    text-decoration-color: rgb(255, 154, 152);
    text-decoration-thickness: 4px;
    text-underline-offset: 2px;
}

body:not(.navbar) {
    margin-top: 100px;
}

.hamburger_menu {
    display: none;
    cursor: pointer;
}

.hamburger_menu span {
    display: block;
    background-color: #ffffff;
    width: 35px;
    height: 5px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1000px) {
    .hamburger_menu {
        display: block;
    }
    .hamburger_menu.change span:nth-child(1) {
        transform: translateY(10px) rotate(45deg)
    }
    
    .hamburger_menu.change span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger_menu.change span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg)
    }
    .nav_menu {
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    .nav_menu a {
        margin: 16px 0;
    }
    .nav_menu.change {
        left: 0;
    }
    .nav_menu a.active {
        text-decoration: none;
    }
}

.banner {
    text-align: center;
    height: 200px;
    padding: 70px 0;
    background-image: linear-gradient(#99D5FF, #FFFF99, #FF9A98);
}
.banner h1 {
    font-size: 40px;
}

.content {
    background-color: #FF9A98;
}

/* CSS STYLING FOR THE FOOTER SECTION */
.footer__container {
    background-color: black;
    padding: .5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 1 rgba(0, 0, 0, .5);
}


.footer__links {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items:not(:last-child) {
    padding-top: 50px;
    font-size: 16px;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* makes it start from the left side */
    margin: 16px;
    text-align: center;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items a {
    color: white;
    text-decoration: none;
}

.footer__link--items label {
    font-size: 12px;
}

.footer__link--items a:hover {
    color: rgb(189, 189, 189);
    transition: 0.3s ease-out;
}

.social__icon--link {
    color: white;
    font-size: 18px;
    align-items: center;
    margin: 0 auto;
}

.social__media {
    max-width: 1300px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.website__rights {
    color: white;
    font-size: .75rem;
}

@media screen and (max-width: 820px) {
    #footer__logo {
        margin-bottom: 2rem;
    }
    .footer__container {
        font-size: .8rem;
    }
    .footer__link--items {
        width: 120px;
    }
}

@media screen and (max-width: 760px) {

    .social__media--wrap {
        flex-direction: column;
    }
    .footer__link--items {
        font-size: 12px;
    }
    .website__rights {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 640px) {
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
        font-size: 10px;
    }
}


/* #footer__logo {
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.25rem;
    padding-bottom: 50px;
} */

/* THE PINK KIKI ARTS LOGO IN THE FOOTER */
#logo {
    border-radius: 50%;
    width: 100px;
    height: auto;
    cursor: pointer;
    margin-bottom: 50px;
}

.footer__link--items label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.footer__link--items [type="text"], input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
}

.footer__link--items [type="submit"] {
    width: 100%;
    padding: 8px;
    background-color: lightpink;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer__link--items [type="submit"]:hover {
    background-color: pink;
}


/* CSS STYLING FOR THE THREE BARS TO CREATE THE X FOR THE ANNOUNCEMENT BAR */
.close-bar .bar{
    width: 20px;
    height: 3px;
    margin: 5px auto;
    background: white;
}

.close-bar .bar {
    display: block;
    cursor: pointer;
}

#close-bar {
    position: absolute;
    z-index: 1001;
    top: 20%;
    right: 5%;
}

#close-bar .bar:nth-child(2) {
    background-color: transparent;
}

#close-bar .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#close-bar .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.events {
    padding: 2rem;
}

.events-wrapper {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

.events-container {
    display: flex;
    aspect-ratio: 16/9;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .25);
    border-radius: 0.5rem;
}

.events-container img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

.events-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 40%;
    transform: translateX(-50%);
    z-index: 1;
}

.events-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.events-nav a:hover {
    opacity: 1;
}