@font-face {
    font-family: 'PPFragment';
    src: url('assets/pp-fragment/PPFragment-GlareRegular.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PPFragmentBold';
    src: url('assets/pp-fragment/PPFragment-SansExtraBold.otf') format('woff2');
    font-weight: bold;
    font-style: normal;
}


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

body {
    font-family: 'PPFragment', Arial, sans-serif;
    font-size: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    background-image: linear-gradient(to left bottom, #e6d08e, #f4f4f4, #f4f4f4);
    background-position: 50vw 0vh;
    background-size: 50vw 50vh;
    background-repeat: no-repeat;
}

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


#content-container{
    display: none;
}
/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    
}

.language-modal {
    padding: 32px;
    /* border-radius: 10px; */
    text-align: center;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='21' ry='21' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e");

    
}

.language-modal h2 {
    margin-bottom: 20px;
}

.language-options {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    
}

.language-option {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f9c20f;
    font-family: 'PPFragment','Tajawal', Arial, sans-serif;
    border-radius: 50px;
    font-size: 18px;
    border: #f9c20f solid 1px;
}

.language-option:hover {
    background-color: #333;
    color: #f9c20f;
    /* transition: background-color 0.3s; */
    font-weight: bold;
    font-family: 'PPFragmentBold','Tajawal', Arial, sans-serif;
    border: #f9c20f solid 1px;
}


/* ------------------------ */
.top-container {
    /* display: none;  */
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    /* overflow: hidden; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 21px;
    text-align: justify;
    padding: 32px;
    text-align: center;
}
.container {
    /* display: none;  */
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    /* overflow: hidden; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='21' ry='21' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 21px;
    text-align: justify;
    padding: 32px;
}
.logo img{
    display: block;
    margin: 0 auto;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    height: 45px;
    margin-bottom: 20px;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
    margin-bottom: 20px;
}

.dropdown-selected {
    border-radius: 50px;
    background-color: #f9c20f;
    border: 1px solid #f9c20f;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;;
    cursor: pointer;
    text-align: left;
    font-size: 26px;
}

.dropdown-options {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown-option {
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.dropdown-option:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {

    font-size: 48px;
    line-height: 3rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'PPFragment', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;


}

.notice-content {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    text-align: justify;

}

.notice-content p {
    margin-bottom: 10px;
}

@media (max-width: 600px) {

    h1{
        font-size: 32px;
        text-wrap: balance;
    }
    .notice-content {
        font-size: 16px;
    }
}
