@font-face {
    font-family: 'IBM Plex Sans Hebrew Bold';
    src: url('assets/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('assets/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
  }
  
.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.text-content {
    width: 500px;
    display: flex;
    flex-direction: column;
}

.text-title {
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--main, #000);
    text-align: right;
    font-family: "IBM Plex Sans Hebrew Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 113.333% */
}

.text-description {
    color: var(--main, #000);
    text-align: right;
    /* Text 18R */
    font-family: "IBM Plex Sans Hebrew";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    padding-top: 10px;
    padding-bottom: 20px;
}

.video-embed {
    padding-top: 10px;
    width: 375px;
    height: 658px;
    border-radius: 20px;
}

.map-embed {
    width: 100%;
    height: 600px;
}

body {
    margin: 0px !important;
}

.homepage-button {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: white;
}

.homepage-button:hover {
    background-color: #aaaaaa;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: #D0D5DD;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: "IBM Plex Sans Hebrew";
}

.button:hover {
    background-color: #ddd;
}

footer {
    padding: 24px 0;
    background: #2748BD;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

footer > div {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .text-content {
    flex: 1;
    color: white;
    font-size: 16px;
    font-family: "IBM Plex Sans Hebrew";
    line-height: 30px;
    padding-right: 0 !important;
}

footer .social-sharing {
    color: white;
    font-size: 16px;
    font-family: "IBM Plex Sans Hebrew";
    line-height: 40px;
    padding-right: 20px;
    display: flex;
}


.footer-icon {
    background: white;
}

.grey-section {
    background-color: #edf2f9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:40px;
}

@media only screen and (max-width: 768px) {
    footer > div {
        flex-direction: column;
    }

    footer .text-content {
        padding-bottom: 20px;
    }
}

/* Mobile Responsive Adjustments */
@media only screen and (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .text-content {
        display: flex;
        flex-direction: column;
    }

    .video-embed, .map-embed {
        width: 100%;
    }
}
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-items {
    display: flex;
    justify-content: flex-end;
    align-items: left;
    width: 80%;
    border-bottom: 1px solid;
    color: #FFFFFF   
}

.nav-item {
    color: #FFFFFF;
    padding: 20px 60px 10px 0;
    font-size: 14px;
    font-family: "IBM Plex Sans Hebrew";
    /* font-weight: 500; */
}

.nav-item:hover {
    cursor: pointer;
}

.header-content {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.header-title {
    text-align: right;
    width: 400px;
    color: #FFFFFF;
    font-size: 40px;
    font-family: "IBM Plex Sans Hebrew Bold";
    font-weight: 700;
}

.header-sub-title {
    text-align: right;
    width: 400px;
    color: #FFFFFF;
    font-size: 18px;
    padding-top:30px;
    padding-bottom: 20px;
    font-family: "IBM Plex Sans Hebrew Bold";
    font-weight: 700;
}

.header {
    background-image: url('assets/israel_flag.jpeg');
    background-size: cover;      /* This will cover the entire viewport of the header */
    background-position: center -200px; /* This will center the image in the header */
    background-repeat: no-repeat; /* This will prevent the image from repeating if it's too small for the container */
    height: 500px;
    width: 100%;
    top: 0;
    left: 0;
}


ul {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    padding-inline-start: 0 !important;

}

.google-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding-bottom: 40px;
}

.google-map {
    justify-self: center;
    align-self: center;
    width: 100%;
}

.google-content-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 64px;
    padding-top: 80px;
}

.google-content-nav-title {
    color: var(--main, #000);
    text-align: right;
    font-family: "IBM Plex Sans Hebrew Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 113.333% */
}

.google-sheet {
    display: none;
    justify-self: center;
    align-self: center;
    width: 100%;
}

.sheet-embed {
    width: 100%;
    height: 600px;
}

.join-us {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding-top: 100px;
}

.join-us-container-column {
    display: flex;
    flex-direction: column;
}

.join-us-container {
    display: flex;
    justify-content: space-between;
}

.join-us-text {
    display: flex;
    flex-direction: column;
    width:40%
}

.join-us-instructions{
    color: black;
    font-size: 18px;
    font-family: IBM Plex Sans Hebrew;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
}

.join-us-instructions-img{
    border-radius: 20px;
    width: 400px;
    margin-top: 20px;
}

.join-us-title { 
    color: var(--main, #000);
    text-align: right;
    font-family: "IBM Plex Sans Hebrew Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 113.333% */
    width: 600px;
    padding-bottom: 40px;
}

.join-us-description {
    color: var(--main, #000);
    text-align: right;
    /* Text 18R */
    font-family: "IBM Plex Sans Hebrew";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    width: 100%;
    padding-bottom:40px;
}


@media (max-width: 767px) {
    .header {
        background-image: url('assets/israel_flag.jpeg');
        background-size: cover;      /* This will cover the entire viewport of the header */
        background-position: -100px 0; /* This will center the image in the header */
        background-repeat: no-repeat; /* This will prevent the image from repeating if it's too small for the container */
        width: 100%;
    }


    .header-title {
        text-align: right;
        width: 60%;
        color: #FFFFFF;
        font-size: 24px;

    }

    .header-sub-title {
        text-align: right;
        width: 60%;
        color: #FFFFFF;
        font-size: 18px;
        padding-top:30px;
        padding-bottom: 20px;
 
    }

    .nav-item {
        padding: 20px 40px 5px 0;
        font-size: 12px;
    }


    .text-content {
        width: 100%;
    }

    .google-content-nav {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .join-us-description{
        width: 100%;
    }

    .join-us-title {
        width: 100%;
    }

    .join-us-instructions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 30px;
    }

    .join-us-instructions-img {
        width: 100%;
    }

    .join-us {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
    }

    .google-map-btn {
        display: none;
    }
    footer .text-content {
        text-align: center;
    }

    .join-us-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .join-us-text {
        width:100%
    }

}

