/* ------------------------------------------------------ */


/* -----------------------UTILITIES---------------------- */


/*  
    Main Theme Color: #a35638 (Brown Shade)
    Footer Main Dark Color: #262626 (Darker)
    h2 Main Font Color: #4d4646 (Grey Shade)
*/


/* -----------------------UTILITIES---------------------- */


/* ------------------------------------------------------ */


/* -----------------------CSS RESET---------------------- */

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


/* --------------------GLOBAL STYLING-------------------- */

html,
body {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    scroll-behavior: smooth;
}

.row {
    width: 90%;
    margin: 0 auto;
}


/* ------------------------LINKS------------------------- */

a {
    text-decoration: none;
}


/* ----------------HEADINGS & PARAGRAPHS----------------- */

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 1.8rem;
    color: #4d4646;
}

h2::after {
    display: block;
    height: 2px;
    background-color: #a35638;
    content: " ";
    width: 50px;
    margin: 0 auto;
    margin-top: 15px;
}

/* -----------------------BUTTONS------------------------ */

.btn-purple {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #BA71DA;
    border-radius: 30px;
    text-transform: uppercase;
}

.btn-white {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    border-radius: 30px;
    text-transform: uppercase;
}

.btn-red {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #F76570;
    border-radius: 30px;
    text-transform: uppercase;
}

.btn-yellow {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #FFD205;
    border-radius: 30px;
    text-transform: uppercase;
}

/* ------------------------------------------------------ */
/* --------------------HEADER SECTION-------------------- */
/* ------------------------------------------------------ */

header {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation-name: backgroundChange;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    position: relative;
}

@keyframes backgroundChange {
    0% {
        background-image: url("cssImages/headerBackgroundImage1.jpg");
    }
    25% {
        background-image: url("cssImages/headerBackgroundImage2.jpg");
    }
    50% {
        background-image: url("cssImages/headerBackgroundImage3.jpg");
    }
    75% {
        background-image: url("cssImages/headerBackgroundImage4.jpg");
    }
    100% {
        background-image: url("cssImages/headerBackgroundImage1.jpg");
    }
}

.header-overlay {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.main-nav {
    height: 80px;
    position: relative;
    z-index: 3;
}

.nav-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.logo-container {
    height: 100%;
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    color: white;
    font-size: 1.8rem;
    height: 100%;
    padding-top: 30px;
}

.nav-links {
    list-style-type: none;
    height: 100%;
    display: flex;
    padding: 40px 0;
}

.nav-link {
    margin: 0 30px;
}

.nav-link>a:link,
.nav-link>a:visited {
    color: #ffffff;
    padding-bottom: 4px;
    transition: border-bottom 0.2s;
}

.nav-link>a:hover,
.nav-link>a:active {
    border-bottom: 2px solid #a35638;
}

.main-nav-dropdown-link {
    position: relative;
}

.main-nav-dropdown-link>a:hover {
    border-bottom: none;
}

.main-nav-dropdown {
    list-style-type: none;
    /* display: none; */
    visibility: hidden;
    margin-top: 2px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-radius: 10px;
    position: absolute;
    width: max-content;
    left: -10px;
    overflow: hidden;
    height: 0;
    transition: all 0.5s ease;
}

.main-nav-dropdown-link:hover .main-nav-dropdown {
    height: 170px;
    /* display: block; */
    visibility: visible;
}

.main-nav-dropdown li:hover {
    background-color: rgba(163, 86, 56, 0.6);
}

.main-nav-dropdown li a {
    color: white;
    height: 100%;
    width: 100%;
    display: inline-block;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 300;
}

.dropdown-icon {
    transform: translateY(5px);
}

.showcase {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: white;
    z-index: 2;
    padding-top: 100px;
}

.showcase-text-top {
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.text-lines {
    width: 15%;
    border-top: 1px solid white;
    transform: translateY(15px);
    margin: 0 20px;
    animation-name: showcaseTextLines;
    /* animation-delay: 1s; */
    animation-iteration-count: 1;
    animation-duration: 10s;
}

@keyframes showcaseTextLines {
    0% {
        width: 0%;
    }
    100% {
        width: 15%;
    }
}


.showcase-paragraph {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    padding: 10px 0;
}

.showcase-btn:link,
.showcase-btn:visited {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 25px;
    color: white;
    border: 2px solid #a35638;
    /* border-radius: 30px; */
    font-weight: 400px;
    transition: background-color 0.2s, border 0.2s;
    animation-name: showcaseButton;
    animation-duration: 2s;
    animation-iteration-count: 4;
    animation-delay: 2s;
}

@keyframes showcaseButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.showcase-btn:hover,
.showcase-btn:active {
    background-color: #7d422b;
    border: 2px solid #7d422b;
    opacity: 85%;
    font-weight: 300;
}

.hamburger-btn {
    font-size: 2rem;
    color: white;
    padding: 30px;
    height: 100%;
    cursor: pointer;
    display: none;
}

#hamburgerMenu {
    display: none;
}


/* ------------------------------------------------------ */
/* --------------CURRENT EVENTS SECTION------------------ */
/* ------------------------------------------------------ */

.current-event-section {
    /* height: 100vh; */
    text-align: center;
    padding-top: 50px;
}

.events-container {
    display: flex;
}

.events-container div:nth-child(1) {
    padding: 80px;
    flex-basis: 70%;
    line-height: 1.5;
    text-align: left;
}

.events-container div:nth-child(1) h3 {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    color: #393e46;
    font-weight: 700;
}

.events-container div:nth-child(1) p {
    padding: 20px 0;
    color: #706c61;
    
}

.events-container div:nth-child(2) {
    flex-basis: 30%;
    padding: 80px 50px 50px 50px;
    line-height: 1.5;
    text-align: left;
}

.events-container div:nth-child(2) h4 {
    color: #393e46;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
}

.events-container div:nth-child(2) p:nth-child(2) {
    color: #706c61;
    padding: 10px 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.events-container div:nth-child(2) hr {
    border-top: 2px solid #FFD205;
}

.events-container div:nth-child(2) p:nth-child(4) {
    font-weight: 700;
    padding: 10px 0;
    color: #393e46;
}

.events-container div:nth-child(1) a {
    font-size: 0.8rem;
}

.events-icon {
    margin: 0 8px;
    transform: translateY(2px);
    color: #393e46;
}

.events-icon:hover {
    color: white;
    background-color: #393e46;
    border-radius: 50%;
}


.events-container div:nth-child(2) p a:link,
.events-container div:nth-child(2) p a:visited {
    color: #393e46;
}


/* ------------------------------------------------------ */
/* ---------------UPCOMING EVENTS SECTION---------------- */
/* ------------------------------------------------------ */

.upcoming-events-section {
    /* height: 100vh; */
    text-align: center;
}

.events-table-container {
    padding: 50px 0;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    height: max-content;
    border: 1px solid #522d5b;
}

table td img {
    height: 100px;
    width: 150px;
    object-fit: cover;
    border-radius: 10px;
}

table th, td {
    padding: 15px;
}

table th {
    font-size: 1rem;
    color: white;
    
}

table td {
    font-size: 0.9rem;
    color: #706c61;
    line-height: 1.5;
}

table td a {
    font-size: 0.6rem;
    width: max-content;
}

table tr {
    border: 1px solid #522d5b;
}

table thead tr {
    background-color: #522d5b;
}

table tbody tr td:nth-child(1) {
    font-weight: bold;
}

table tbody tr:nth-child(odd) {
    background-color: #e7d39f;
}

table tbody tr:nth-child(even) {
    background-color: #f8f2e3;
}



/* ------------------------------------------------------ */
/* --------------------FOOTER SECTION-------------------- */
/* ------------------------------------------------------ */

footer {
    background-color: #262626;
    color: white;
    padding-bottom: 30px;
}

.footer-main {
    display: flex;
    padding: 50px 0 30px 0;
}

.footer-item {
    flex: 1 1 33.33%;
    padding: 0 20px;
}

.footer-item h4 {
    word-spacing: 1px;
    padding-bottom: 10px;
}

.footer-item p {
    font-size: 0.8rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-item .footer-logo {
    color: white;
    font-family: 'Great Vibes', cursive;
    padding: 20px 0;
    font-size: 1.4rem;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-contact-icons {
    margin-right: 10px;
    display: inline-block;
    transform: translateY(2px);
}

.social-icons {
    display: flex;
    height: 60px;
    width: 80%;
}

.social-icons div {
    display: block;
    flex: 1 1 20%;
    padding: 10px 5px;
}

.social-icons img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-image-grid {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(3, 1fr);
    grid-gap: 8px;
}

.footer-image-grid img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
    transition: transform 0.2s;
}

.footer-image-grid img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

footer hr {
    border-top: 1px solid rgb(255, 255, 255, 0.1);
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.footer-bottom {
    display: flex;
    padding: 30px 10px;
}

.footer-bottom-item {
    flex: 1 1 50%;
}

.copyright {
    margin-top: 5px;
    font-size: 0.7rem;
    color: white;
}

.footer-nav-links {
    display: flex;
    list-style-type: none;
}

.footer-nav-links li:first-child {
    margin-left: auto;
}

.footer-nav-links li {
    margin: 0 10px;
}

.footer-nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-credits {
    text-align: center;
}

.made-by-text {
    padding-bottom: 10px;
    font-size: 0.9rem;
    color: white;
    font-weight: lighter;
}

.heart-icon {
    color: #da2d2d;
}

.maple-leaf-icon {
    color: #eb8242;
}