:root {
    --ivory: #F5E6C5;
    --organic: #3F422E;
    --apricot: #D78B30;
    --natural: #9F886F;
  }
  
  /* GENERAL SETTINGS */
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--ivory);
    color: var(--natural);
  }
  
  /* NAVBAR */
  .navbar {
    background: #664425;
    color: var(--ivory);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--ivory);
    font-weight: bold;
  }
  
  /* HERO SECTION */
  body.lock-scroll {
    overflow: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.8s ease;
    overflow: hidden;
}

  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero h2 span {
    color: var(--apricot);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .hero-intro {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .intro-image {
    max-width: 700;
    width: 70%;
    margin: 40px auto;
    display: block;
    border-radius: 20px;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.2);
}
  
  .homepage-intro {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .homepage-cards {
    margin-bottom: 60px;
  }
  
  /* animation for cards */
  .appear-from-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
  }
  
  .appear-from-bottom.show {
    opacity: 1;
    transform: translateY(0);
  }

  #landing-screen.hidden,
#landing-screen[style*="display: none"] {
  display: none !important;
}

  #main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertical centering */
    align-items: center;      /* horizontal centering */
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }
  

  
  .home-intro {
    max-width: 800px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  
  
 /* Generic button style for all buttons, including LinkedIn */
button,
.contact-form button,
.linkedin-link {
  padding: 10px 15px;
  border: none;
  background: var(--organic);
  color: var(--ivory);
  font-weight: bold;
  font-size: 1.0rem;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
}

/* Hover effect for all buttons */
button:hover,
.contact-form button:hover,
.linkedin-link:hover {
  background: var(--apricot);
  color: var(--ivory);
}
  
  /* HERO SLIDE ANIMATION */
  .slide-up {
    transform: translateY(-100vh);
    pointer-events: none;
  }
  
  
  .hidden {
    display: none;
  }
  
  /* CARDS */
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .card, .team-card {
    background: var(--natural);
    color: var(--ivory);
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover, .team-card:hover {
    transform: translateY(-8px);
  }
  
  /* LINKS INSIDE CARDS */
  .card a, .team-card .linkedin-link {
    color: var(--ivory);
    text-decoration: none;
    font-weight: bold;
  }
  
  .card a:hover, .team-card .linkedin-link:hover {
    color: var(--apricot);
  }
  
  /* TEAM PAGE */
  .team-container {
    padding: 50px;
    background: var(--ivory);
    color: var(--natural);
    text-align: center;
  }
  
  .team-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .team-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .role {
    font-weight: bold;
    margin: 10px 0;
  }
  
  .location {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .bio {
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.5;
  }

  
  /* CONTACT PAGE */
  .contact-container {
    padding: 60px 20px;
    text-align: center;
    background: var(--ivory);
    color: var(--natural);
  }
  
  .contact-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .contact-container p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 15px auto;
  }
  
  /* LINKS IN CONTACT */
  .contact-container .email-link,
  .contact-container .linkedin-link {
    color: var(--organic);
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-container .email-link:hover,
  .contact-container .linkedin-link:hover {
    color: var(--apricot);
  }
  
  /* CONTACT FORM */
  .contact-form {
    margin: 40px auto 0;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--natural);
    font-size: 1rem;
  }

  #success-message {
    color: #28a745; /* ירוק יפה בסגנון Bootstrap */
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}
  

  .about-container {
    padding: 60px 30px;
    background: var(--ivory);
    color: var(--natural);
    text-align: center;
  }
  
  .about-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  
  .about-subtitle {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .about-section {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .about-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
  }
  
  .about-list li {
    margin-bottom: 15px;
  }
  
