body {
    background-color: #ede0d4;
    /*background-image: url('texture.png');  Placeholder for texture */
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px;
}
.container1 {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-size: 150px 150px;
}
/* Hebrew version (default RTL) */
:dir(rtl) .container1 {
    background-position: top left;
    text-align: right;
}

/* English version (LTR) */
:dir(ltr) .container1 {
    background-position: top right;
    text-align: left;
}
.container {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}
h1, h2 {
    color: #5a4a42;
}
.logo {
    width: 150px;
    height: auto;
}
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}
.menu-links {
    display: flex;
    gap: 20px;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #5a4a42;
    font-weight: bold;
}
.map-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.map-container img {
    width: 45%;
    cursor: pointer;
    border-radius: 10px;
}
.google-sheet {
    width: 100%;
    height: 500px;
    border: none;
}

.team-member {
    margin-bottom: 15px;
}
.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.info {
    display: flex;
    flex-direction: column;
}

.social-links a img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
        font-size: 14px;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
        margin-bottom: 10px;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .menu-links.open {
        display: flex;
    }


    nav a {
        font-size: 16px;
        padding: 8px;
    }

    h1 {
        font-size: 20px;
        text-align: center;
    }

    h2 {
        font-size: 16px;
        text-align: center;
    }

    h4 {
        font-size: 14px;
    }

    .container1 {
        background-size: 80px 80px; /* Smaller logo for phones */
        background-position: top left; /* Optional: shift position */
    }

    .google-sheet {
        width: 100%;
        height: 400px;
    }

    img, .logo {
        max-width: 100px;
        height: auto;
    }

    /* Mobile: fit maps and tables (iframes/images) within viewport (LTR + RTL) */
    .iframe-container iframe,
    iframe,
    .google-sheet,
    .map-container img {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Keep a reasonable height on mobile for embeds */
    .iframe-container iframe,
    iframe {
        height: 400px;
    }
}


