@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
    justify-content: center;
}

#items .container {
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}
/* LANGUAGE SELECT START */
#language-select {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #a19f9f;
    color: #3e2627;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

#language-select:hover {
    border-color: #888;
}

#language-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    border-color: rgba(81, 203, 238, 1);
}
/* LANGUAGE SELECT END */

/* Scroll Up */
.scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    background: #9a9a9a;
    color: white;
    padding: 8px 12px;
    border-radius: 20%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-up:hover {
    background: #c32148;
}

/* Utility Classes */
.primary-text {
    color: #c32148;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
}

.btn-primary,
.btn-primary2 {
    color: antiquewhite;
    border: 1px solid antiquewhite;
    transition: 0.93s;
}

.btn-primary2 {
    box-shadow: 0 0 5px #b62245;
}

.btn-primary2:hover {
    box-shadow: 0 0 17px #b62245;
}

.btn-secondary {
    color: antiquewhite;
    border: 1px solid antiquewhite;
    background: #383848;
    margin-top: 2rem;
}

.btn-primary:hover,
.btn-primary2:hover,
.btn-secondary:hover {
    background: #c32148;
}

/* Header Start */
header {
    height: 100vh;
    background: url('./img/home_bg.webp') center center/cover no-repeat;
    position: relative;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar img {
    width: 80px;
    margin-left: 100px;
}

#navbar ul {
    display: flex;
    margin-right: 100px;
}

#navbar ul li a {
    padding: 15px 20px;
    color: antiquewhite;
    font-weight: 600;
}

#navbar ul li a:hover {
    border-bottom: 2px solid #b4b95b;
}

header .content {
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

header .content h1 {
    font-size: 5vw;
    color: antiquewhite;
}

header .content p {
    margin: 20px 0px 40px;
    color: antiquewhite;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0, 0.5);
}

header * {
    z-index: 10;
}

/* Header End */

/* Menu start */

#items .container .item-panels .panel{
    display: flex;
    width: 100%;
    align-items: flex-start;
    overflow-x: scroll;
    overflow-y: visible;
    background-color: white;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.panel::-webkit-scrollbar {
    width: 0;
}

.menu-item {
    display: flex;
    margin: 22px;
    justify-content: center;
    align-items: center;
    padding: 0.5vw;
    flex: 1 0 auto ; /* Allow items to grow and shrink */
    height: 140px;
    border-radius: 22px;
    border: dashed #1d1d1d 1px;
    vertical-align: middle;
}

.menu-item img {
    width: 120px;
    height: 120px;
    border-radius: 20%;
    margin: 12px;
position: relative;
}

.menu-item h3 {
    color: #383848;
    border-bottom: 1px dashed #c2bdbd;
    padding-bottom: 10px;
    position: relative;
    margin: 10px;
}

.menu-item span {
    position: relative;
}
/* Footer Start */

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 14px;
}

/* Footer End */

/* Menu end */
/* Accordion Start */

.accordion {
    background-color: #1d1d1d;
    color: wheat;
    cursor: pointer;
    padding: 18px;
    margin: 0.2vw 1vw;
    width: 98%;
    border: none;
    border-radius: 10px;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: #1d1d1f;
    color: aliceblue;
}

.accordion:after {
    content: '\002B';
    color: #9c1a39;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}


/* Accordion End */

/* Responsive Start*/
@media (max-width: 1023px) {
    .container {

        justify-content: center;
        align-items: center;
    }

    #navbar {
        flex-direction: column;
    }

    #navbar img {
        margin: auto;
    }

    #navbar ul {
        margin: auto;
    }

    header .content h1 {
        font-size: 32px;
        color: white;
    }

    /* Menu start */
    .menu-item {
        margin: 10px;
    }

    .menu-item p {
        width: 75%;
    }

    .menu-item span {
        position: relative;
        top: 0;
        right: 20px;
    }
}

/* Menu End */

@media (max-width: 667px) {

    .container {
        max-width: 600px;
        overflow: hidden;
    }

    html {
        height: -webkit-fill-available;
    }

    body {
        height: -webkit-fill-available;
    }


    header {
        width: auto;
    }


    #navbar ul li a {
        padding: 5px 10px;
    }

    header .content h1 {
        font-size: 28px;
    }

    /* Menu start */

    .menu-item {
        margin: 5px;
        margin-bottom: 15px;
    }

    .menu-item p {
        width: auto;
    }

    .menu-item span {
        position: relative;
        margin: 16px;
    }

    .menu-item img {
        width: 100px;
        height: 100px;
        border-radius: 20%;
        margin: 10px;
    }
}

/* Menu End */
/* Responsive End */