:root {
    --main-bg-color: #5ccafe;
    --main-box-bg-color: #00CACA;
    --font-color: #000000;
    --gold: #F4AF36;
    --teal: #00CACA;
    --blue: #0265ff;
    --purple: #B036F3;
    --lime: #8EF438;
    --pink: #FF3DB7;
    --text-shadow: 2px 2px 2px #00000055;
}

header {
    display: flex;
    align-items: center;
    background-color: #EA3A3A;
    margin: 0px;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    color: var(--gold);
    box-shadow: 0px 0px 5px 5px #00000055;
    z-index: 99;
    position: sticky;
    top: 0;
    animation-duration: 2s;
    animation-name: slide-in-top;
}

.dropdown {
    margin-left: auto;
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.drop-btn {
    width: 50px;
    height: 50px;
    font-size: 32px;
    background-color: var(--gold);
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 6px 0px 0px #a2762a;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.drop-btn:hover {
    scale: 1.15;
    cursor: pointer;
}

.drop-btn:active {
    box-shadow: 0px 0px 0px 0px #008888;
    translate: 0px 6px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 20px;
    padding: 5px;
    background-color: var(--main-box-bg-color);
    min-width: 180px;
    z-index: 1000;
    border-style: solid;
    border-radius: 10px;
    border-color: #008888;
    border-width: 3px;
    box-shadow: 0px 0px 0px 3px var(--main-box-bg-color), 5px 5px 5px 0px #00000055;
    text-align: left;
    translate: -3px 0px;
}

.dropdown-content a {
    color: var(--font-color);
    font-size: 24px;
    display: block;
    margin: 10px;
}

body {
    background-color: var(--main-bg-color);
    margin: 0px;
    text-align: center;
    overflow-x: hidden;
    color: var(--font-color);
}

img.logo {
    border-radius: 50%;
}

.header-title {
    vertical-align: center;
    text-shadow: var(--text-shadow);
    margin: 20px;
    color: var(--gold);
}

.event-title {
    animation-duration: 2s;
    animation-name: slide-in-left;
    animation-timing-function: ease-out;
    overflow-x: visible;
    position: relative;
}

.GSS {
    font-size: 36px;
    color: var(--gold);
    text-shadow: var(--text-shadow);
}

.GSS em {
    font-size: 30px;
}

.next-event {
    font-size: 20px;
    color: black;
    rotate: z -7deg;
    position: absolute;
    top: 10px;
    left: 10px;
    transform-origin: top left;
}

div.welcome {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 100px;
    animation-duration: 2.5s;
    animation-name: slide-in-right;
    width: 50%;
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 0px #000000;
}

@keyframes slide-in-top {
    from {
      translate: 0vw -140px;
      scale: 100% 100%;
    }
  
    to {
      translate: 0 0;
      scale: 100% 100%;
    }
}

@keyframes slide-in-right {
  from {
    translate: 100vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

@keyframes slide-in-left {
  from {
    translate: -100vw 0vw;
    scale: 100% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

@keyframes pop-in {
    from {
        scale: 0% 0%;
        rotate: ;
    }

    to {
        scale: 100% 100%;
    }
}

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

    to {
        visibility: 1;
    }
}

div.welcome_box {
    margin: 0px;
    padding: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #00000000 0%, var(--main-bg-color)), url(images/FourSeasonsOfGoldendale_SChoate6.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.upcoming-events {
    color: var(--gold);
    margin-top: 35px;
    text-shadow: 2px 2px #00000085;
    font-size: 34px;
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 5%;
}

.events-container a {
    display: grid;
}

.event {
    border-radius: 20px;
    box-shadow: 5px 5px 5px 0px #00000055;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.event:hover {
    scale: 1.03;
}

.MCT-event {
    background-color: white;
}

.event img {
    width: 100%;
    border-radius: 20px;
}

.GSS-event {
    background-color: white;
}

.events-grid-item {
    background-color: var(--main-box-bg-color);
    padding: 0px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 0px #00000055;
    font-size: 20px;
    display: block;
    color: black;
    text-decoration: none;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-name: pop-in;
    animation-timing-function: cubic-bezier(.64,.11,.49,1.26);
}

.events-grid-item:hover {
    scale: 103%;
}

.event-date {
    background-color: var(--pink);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 10px;
    border-style: none;
    width: fit-content;
    padding: 10px;
    font-size: 16px;
}

.event-title {
    font-size: 36px;
    color: var(--gold);
    text-shadow: var(--text-shadow);
    text-decoration-color: red;
}

.event-title em {
    font-size: 30px;
}


.events-grid-item p {
    margin: 5px;
    margin-bottom: 10px;
}

a.newsletter-button {
    display: inline-block;
    font-size: 24px;
    margin: 30px;
    margin-bottom: 10px;
    background-color: var(--gold);
    padding: 15px;
    border-radius: 20px;
    border-style: none;
    box-shadow: 0px 6px 0px 0px #a2762a;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    color: var(--font-color);
}

a.newsletter-button:hover {
    scale: 1.15;
    rotate: z 2deg;
    background-color: #ffd350;
    box-shadow: 0px 6px 0px 0px #a69036;
}

a.newsletter-button:active {
    box-shadow: 0px 0px 0px 0px #a2762a;
    translate: 0px 6px;
}

div.sponsors-div {
    padding: 15px;
}

.ty-sponsors {
    margin-top: 0px;
    font-size: 32px;
    color: var(--gold);
    text-shadow: 2px 2px #00000055;
    font-weight: 550;
}

.sponsor {
    font-size: 28px;
    color: #ffffff;
}

.wave-divider {
    aspect-ratio: 900/150;
    background: no-repeat center;
    background-size: cover;
    background-image: url(images/layered-waves-divider.svg);
}

footer {
    background-color: #EA3A3A;
    margin: 0px;
    padding: 10px;
    text-align: left;
    font-size: 24px;
    color: #e7efff;
    width: 100%;
}

a.footer-text {
    color: var(--font-color);
    margin-left: 35px;
    margin-right: 35px;
}