@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

:root {
    --background: #c8a221;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

::-webkit-scrollbar {
    width: 1.2vh;
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 102, 102, 0.5);
    opacity: 0;
    border-radius: 1vmax;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 102, 102, 0.7);
}

body {
    margin: 0;
    background: #222;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
}

.bg-image {
    width: 100%;
    height: auto;
    min-height: 100vh;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin: 0 auto;
    position: fixed;
    z-index: -1;
    filter: blur(50px) brightness(0.75);
    -moz-filter: blur(50px) brightness(0.75);
    -webkit-filter: blur(50px) brightness(0.75);
    -o-filter: blur(50px) brightness(0.75);
}

.content {
    margin-top: 200px;
}

#titles {
    text-align: center;
}

@keyframes grow_rotation {
    0% {
        transform: rotate(0.015turn) scale(1);
    }
    50% {
        transform: rotate(-0.015turn) scale(0.7);
    }
    100% {
        transform: rotate(0.015turn) scale(1);
    }
}

.main-title {
    font-size: 3em;
    color: white;
}


#signup-btn {
    background-color: white; /* Green */
    border: none;
    color: #7a0606;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
#signup-btn {
    font-size: 1.3rem;
    background-color: #7a0606;
    color: white; 
    border-radius: 100px;
  }
  
  #signup-btn:hover {
    background-color: white;
    color: #7a0606;
  }
  

  
/* navigation styles start here */

header {
    background: var(--background);
    text-align: center;
    position: fixed;
    z-index: 2;
    width: 100%;
    opacity: 0.9;
}

.nav-toggle {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.nav-toggle:focus ~ .nav-toggle-label {
    outline: 3px solid rgba(lightblue, 0.75);
}

.nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1em;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 2px;
    width: 2em;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

nav {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: var(--background);
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    margin-bottom: 1em;
    margin-left: 1em;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all 150ms ease-in-out;
}

nav a:hover {
    color: #000;
}

.nav-toggle:checked ~ nav {
    transform: scale(1, 1);
}

.nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

@media screen and (min-width: 800px) {
    .nav-toggle-label {
        display: none;
    }

    header {
        top: 0;
        display: grid;
        grid-template-columns: 1fr auto minmax(600px, 3fr) 1fr;
    }

    nav {
        all: unset;

        position: relative;
        text-align: left;
        transition: none;
        transform: scale(1, 1);
        background: none;
        top: initial;
        left: initial;

        grid-column-end: 1 / 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    nav ul {
        display: flex;
    }

    nav li {
        margin-left: 3em;
        margin-bottom: 0;
    }

    nav a {
        opacity: 1;
        position: relative;
    }

    nav a::before {
        content: "";
        display: block;
        height: 5px;
        background: black;
        position: absolute;
        top: -0.75em;
        left: 0;
        right: 0;
        transform: scale(0, 1);
        transition: transform ease-in-out 250ms;
    }

    nav a:hover::before {
        transform: scale(1, 1);
    }
}


@media screen and (min-width: 0px) {
    header {
        top: 0;
    }
}


/* Start of all contents stated in the navbar */

.content {
    margin-top: 10em;
}

.container {
    margin: 200px;
    text-align: center;
    min-width: 300px;
    margin:auto;
}

.container h3 {
    font-size: 30px;
    font-weight: 100;
    color: white;
}

.top-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.left-section {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #c8a221;
    width: 70%;
    margin-top: 1.5%;
    margin-bottom: 2%;
}

.left-section p {
    font-size: 1.1em;
    font-style: italic;
    color: #ffcccb
}

.middle-section {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #c8a221;
    width: 50%;
    margin-bottom: 2%;
}

.right-section {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    font-size: 1em;
    border-radius: 16px;
    border: 1px solid #c8a221;
    width: 30%;
    
}

@media screen and (min-width: 0px) {
    .main-title {
        font-size: 2.2em;
        margin-top: 1rem;
    }
    .left-section {
        width: 90%;
        line-height: 1.3;

    }
    .left-section h3 {
        font-size: 1.3em;
    }
    .left-section p {
        word-spacing: 4px;
        line-height: 1.4;
        font-size: 0.8em;
    }
    .middle-section {
        width: 90%;
    }
    .middle-section h3 {
        font-size: 1.5em;
    }
    .right-section {
        width: 90%
    }
    .right-section h3{
        font-size: 1;
    }
}

@media screen and (min-width: 768px) {
    .main-title {
        font-size: 2.5em;
    }
    .left-section {
        width: 70%;
    }
    .left-section h3 {
        font-size: 1.5em;
    }
    .left-section p {
        word-spacing: 0;
        line-height: 1.1;
        font-size: 1em;
    }
    .middle-section {
        width: 50%
    }
    .middle-section h3 {
        font-size: 1.5em;        
    }
    .right-section {
        width: 40%
    }
}

@media screen and (min-width: 1200px) {
    .main-title {
        font-size: 3em;
    }
    .left-section {
        width: 60%;
    }

    .middle-section {
        width: 50%
    }

    .middle-section h3{
        font-size: 2em;
        margin: 20px;
    }

    .right-section {
        width: 40%
    }
}

/* icons styles */
.icons {
    margin: 2px;
    margin-top: -2rem;
}
.fa-discord {
    color:#5562EA;
}

.fa-github {
    color: white;
}

.fa-instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    padding: 1rem;
}


.logo {
    grid-column: 2 / 3;
    width: 150px;
    height: auto;
}

/* Not very sure about this... */
img {
    width: 100%;
    min-width: 150px;
    max-width: 900px;
    height: auto;
}

.box1 {
    flex: 1;
    background-color: rgb(58, 107, 153);
}

/* STARTING OF USER CARDS */

#officers {
    margin-top: 10%;
}

.officers-cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    min-width: 300px;
    margin: 20px;
    text-align: center;
    font-family: arial;
    padding-bottom: 20px;
    background-color: rgb(8, 71, 114);
    flex: 1;
    border-radius: 20px;
}

.title {
    color: grey;
    font-size: 18px;
}

.officer-name {
    color: white;
}

.officer-title {
    color: white;
}

.officer-image {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;

}

a {
    text-decoration: none;
    font-size: 22px;
    color: white;
}

#officers a:hover {
    opacity: 0.7;
}

/* Start of questions */
#questions {
    margin-top: 10%;
} 
