body {
    margin: 0px;
    width: 100vw;
}

h1, h2, h3, a {
    font-family: "Montserrat", sans-serif;
}

p {
    font-family: "Nunito Sans", sans-serif;
}

header {
    color: black;
    width: 100vw;
}

.logo {
    width: 5vw;
    height: 5vw;
    float: left;
    padding-top: 2vw;
    padding-left: 2vw;
}

nav {
    display: flex; 
    position: sticky;
    top: 0;
    border: 2px solid black;
    background-color: #6E8894;
}

.top-header {
    width: 100vw;
    background-color: #6E8894;
}

.top-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    margin: 0;
    padding-right: 2vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 43vw;
}

a {
    display:flex;
    justify-content: space-evenly;
    justify-items: center;
    background-color: #6E8894;
    text-decoration: none;
    width: 33.33vw;
    height: 5vh;
    padding-top: 2.5vh;
    border: black 1px solid;
    font-size: 1.2rem;
    color: black;
}

a:hover {
    display:flex;
    justify-content: space-evenly;
    justify-items: center;
    background-color: #81a3b3;
    text-decoration: none;
    width: 33.33vw;
    height: 5vh;
    padding-top: 2.5vh;
    border-left: black 1px solid;
    border-right: black 1px solid;
    font-size: 1.5rem;
    color: black;
}

a:active {
    display:flex;
    justify-content: space-evenly;
    justify-items: center;
    background-color: #aad6ec;
    text-decoration: underline;
    width: 33.33vw;
    height: 5vh;
    padding-top: 2.5vh;
    border-left: black 1px solid;
    border-right: black 1px solid;
    font-size: 1.5rem;
    color: black;
}

#hero-section {
    background-image: linear-gradient(rgba(0,0,0, 0.3), rgba(0,0,0, 0.5)), url("https://images.pexels.com/photos/997133/pexels-photo-997133.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: rgba(255, 255, 255, 0.516);
    text-align: center;
    background-attachment: fixed;
  }
  
#hero-section h1{
    font-size: 15rem;
    padding-top: 30vh;
    margin: 0;
}

p {
    font-size: 1.2rem;
}

.overview {
    padding: 10vh 20vw;
    text-align: center;
}

.overview h2 {
    font-size: 2.5rem;
}

.img-carasol {
    background-color: #7C3238;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
}
  
.img-carasol img {
    padding: 10px;
    width: 20vw;
}

.event-section-1 {
    padding: 10vh 0;
    background-color: #EDCBB1;
    text-align: center;
}

.event-section-1 h2 {
    font-size: 2.5rem;
}

.event-card-row {
    display: flex;
    justify-content: space-evenly;
}

.event-card {
    width: 20vw;
    border: 2px solid black;
    background-color: white;
    border-radius: 5%;
    box-shadow: 10px 5px 5px white;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
}

.event-card img {
    width: 20vw;
}

.event-card h3, p {
    padding: 1vw;
}

.history {
    text-align: center;
    margin: 10vh 20vw;
}

.history h2 {
    font-size: 2.5rem;
}

.environment {
    padding: 5vw 0;
    background-color: #B7245C;
}

.environment h2 {
    font-size: 2.5rem;
    text-align: center;
}

.gem-row {
    display: flex;
    justify-content: space-evenly;
}

.gem {
    text-align: center;
    width: 30vw;
}

.gem img {
    width: 30vw;
}

.img-blur {
    position: relative;
    width: 30vw; 
    background-image: url('https://images.unsplash.com/photo-1599689018034-48e2ead82951?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(1.5rem); 
    transition: filter 1s ease-in-out; 
}

.img-blur:hover {
    filter: blur(0); 
}

footer {
    display: flex;
    justify-content: space-around;
    background-color: #231123;
    padding: 2vw;
    color: white;
}

#main-page {
    color: white;
    border: none;
    font-size: 1.1rem;
    display: inline;
    padding-left: 1vw;
    margin: auto;
    text-decoration: underline;
    background-color: transparent;
}

#main-page:hover {
    color: #EDCBB1;
}

#main-page:active {
    font-weight: bold;
}

@media screen and (max-width:960px)  {    
    .logo {
        display: none;
    }
    
    header {
        color: black;
        width: 100vw;
    }
    
    .top-header h1 {
        display: flex;
        justify-content: center;
        font-size: 3rem;
        margin: 0;
        padding: 2vh 0;
    }
    
    a {
        display:flex;
        justify-content: space-evenly;
        justify-items: center;
        background-color: #6E8894;
        text-decoration: none;
        width: 33.33vw;
        height: 5vh;
        padding-top: 2.5vh;
        border: black 1px solid;
        font-size: 0.8rem;
        color: black;
    }

    a:hover {
        font-size: 1rem;
    }

    a:active {
        font-size: 1rem;
    }
    
    #hero-section h1{
        font-size: 15vw;
        padding-top: 30vh;
        margin: 0;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .overview {
        padding: 5vh 10vw;
    }
    
    .overview h2 {
        font-size: 2.5rem;
    }
      
    .img-carasol img {
        padding: 10px;
        width: 80vw;
    }
    
    .event-section-1 {
        padding: 5vh 0;
        background-color: #EDCBB1;
        text-align: center;
    }
    
    .event-card-row {
        display: grid;
    }
    
    .event-card {
        width: 80vw;
        border: 2px solid black;
        background-color: white;
        border-radius: 5%;
        margin-bottom: 5vh;
    }
    
    .event-card img {
        width: 80vw;
    }
    
    .history {
        text-align: center;
        margin: 5vh 10vw;
    }
    
    .gem-row {
        display: grid;
        /* justify-content: space-evenly; */
    }
    
    .gem {
        text-align: center;
        width: 80vw;
    }
    
    .gem img {
        width: 80vw;
    }
    
    .img-blur {
        position: relative;
        width: 80vw; 
        background-image: url('https://images.unsplash.com/photo-1599689018034-48e2ead82951?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1000&q=80');
        background-size: cover;
        background-position: center;
        filter: blur(1.5rem); 
        transition: filter 3s ease-in-out; 
    }
    
    .img-blur:hover {
        filter: blur(0); 
    }

    footer {
        display: grid;
        text-align: center;
        justify-content: space-around;
        background-color: #231123;
        padding: 3vw;
        color: white;
    }
}

/* 
dark purple
#231123

slate grey
#6E8894

desert sand
#EDCBB1

rose red
#B7245C

wine
#7C3238
*/