* {
    list-style: none;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Familjen Grotesk', 'Roboto', sans-serif;
}

.navbar {
    background: none;
    z-index: 999;
    width: 90%;
    padding: 20px 100px;
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #FAF0E6 !important;
}

.navbar .toggle_btn {
    font-size: 1.5rem;
    cursor: pointer;
        display: none;
}

.navbar-brand {
    cursor: pointer;
}

.navbar-brand h1, a {
    font-size: 24px;
    font-weight: normal;
    color: black;
}

.navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

.navbar-list ul li {
    margin: 0 10px;
}

.navbar-list ul li a {
    font-size: 14px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s ease;
    margin: 0 5px;
}

.navbar-list ul li a:hover {
    color: #FAF0E6;
    background: #333333;
}

.navbar-list ul li a.active {
    color: #FAF0E6;
    background: #333333;
}

.navbar-list ul li button {
    background: none;
    border: none;
    padding: 0;
}

.navbar-list ul li button a {
    background: #B20000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: .4s ease;
    text-transform: uppercase;
    text-decoration: none; 
}

.navbar-list ul li button:hover {
    transform: translateY(-5px);
}

.scroll {
    background: white;
    top: -120px;
    border-radius: 50px;
    width: 90%;
    animation: fadedown .4s ease 1s forwards;
}

@keyframes fadedown {
    0% {
        top: -120px;
    }
    100% {
        top: 20px;
    }
}

.dropdown_menu {
    z-index: 999;
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 300px;
    height: 0;
    background: #333333;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown_menu.open {
    height: 240px;
}
/* MAIN */

#carouselExampleInterval {
    height: 60vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container span {
    color: #B20000;
    font-weight: bold;
}

.container h1 {
    margin-bottom: 60px;
    text-align: center;
    font-weight: bold;
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 80px;
}

.container h2 {
    font-weight: bold;
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.container p {
    font-family: 'Roboto';
    font-size: 18px;
    text-align: left;
}

.about {
    margin-bottom: 50px;
}

.mission {
    margin-bottom: 50px;
    text-align: center;
}

.vision {
    margin-bottom: 50px;
    text-align: center;
}

/* FOOTER */
.contact-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: url('src/rokaf_event5.jpg') center/cover no-repeat;
    position: relative;
}

.toast-container .toast {
    min-width: 500px; 
    height: auto;
}

.toast-container .toast-body {
    padding: 30px; 
    font-size: 24px; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 51, 167, 0.863) 0%, rgba(9, 51, 167, 0.418) 100%);
}

.get-in-touch,
.social-media {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}


.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    margin-right: 10px;
}

.contact-container h2 {
    font-family: 'Familjen Grotesk' sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.get-in-touch,
.social-media h2 {
    margin-bottom: 20px;
}

.social-media p {
    font-family: 'Roboto' sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.get-in-touch label {
    color: #ffffff;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.social-media {
    display: flex;
    flex-direction: column;
}

.social-media p .material-icons {
    margin-right: 10px;
}

@media (max-width: 1124px) {
    .navbar {
        padding: 10px 20px; 
        height: 50px; 
        border-radius: 25px; 
        z-index: 998;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
        z-index: 999;
    }

    .dropdown_menu li a {
        font-size: 14px;
        text-decoration: none;
        color: #FAF0E6;
        font-weight: bold;
    }

    .dropdown_menu button {
        background: #B20000;
        border: none;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 12px;
        color: white;
        border-radius: 50px;
        cursor: pointer;
        transition: .4s ease;
        text-transform: uppercase;
    }

    .navbar-list {
        flex-direction: column;
        align-items: flex-start; 
    }

    .navbar-list ul li {
        margin: 10px 0; 
    }
    
    .navbar-list .nav-links {
        display: none;
    }

    .navbar-list ul li a {
        font-size: 12px; 
    }

    .navbar-list ul li button {
        padding: 6px 12px; 
        font-size: 12px; 
    }

    .navbar-brand h1 {
        font-size: 16px; 
        color: #333333;
    }
    
    .main-container {
        flex-direction: column;
    }

    #carouselExampleInterval {
        height: 30vh;
        z-index: 1;
    }

    .container p {
        text-align: justify;
    }

    .carousel-item img {
        height: 250px;
    }

    .cards-container {
        justify-content: space-around;
    }
    
    .sub-container {
        width: 100%;
        margin-bottom: 10px; 
    }

    .cards-container {
        max-width: none; 
    }

    .contact-container {
        flex-direction: column;
    }

    .toast-container .toast {
        min-width: 250px;
    }

    .toast-container .toast-body {
        padding: 20px; 
        font-size: 16px; 
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 999;
    }

    .dropdown_menu li a {
        font-size: 14px;
        text-decoration: none;
        color: #FAF0E6;
        font-weight: bold;
    }

    .dropdown_menu button {
        background: #B20000;
        border: none;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 12px;
        color: white;
        border-radius: 50px;
        cursor: pointer;
        transition: .4s ease;
        text-transform: uppercase;
    }

    .container h1 {
        font-size: 40px;
    }

    .container h2 {
        font-size: 30px;
    }

    .toast-container .toast {
        min-width: 200px; 
    }

    .toast-container .toast-body {
        padding: 15px; 
        font-size: 14px; 
    }
}