/* ===== Reset & base styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #fff8ee; 
    color: #333;
    line-height: 1.6;
  }
  
  /* ===== Navbar ===== */
  .navbar {
    background-color: #407ce2; /* bold blue */
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .navbar a {
    color: #fffdf9; /* cream links */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #f1d4b7; /* warm beige hover */
  }
  
  /* ===== Main container ===== */
  .container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 30px;
  }
  
  /* ===== Headings ===== */
  h1 {
    font-size: 2.8rem;
    color: #407ce2;
    margin-bottom: 10px;
    text-align: center;
  }
  
  h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: normal;
  }
  
  /* ===== Paragraphs & text cards ===== */
  p, b, ul {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .text-card {
    background-color: #f1d4b7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  }
  
  /* ===== Product section (text + image) ===== */
  .product-section {
    display: flex;
    align-items: flex-start; /* top-align text and image */
    gap: 30px;
    margin-top: 20px;
  }
  
  .product-section .product-text {
    flex: 1;
  }
  
  .product-section .product-image {
    flex: 0 0 300px; /* fixed image width */
  }
  
  .product-section .product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .model-image {
    margin-top: 30px;     
    margin-bottom: 30px;  
    display: flex;         
    justify-content: center;
  }
  
  /* ===== Responsive design ===== */
  @media (max-width: 800px) {
    h1 {
      font-size: 2rem;
    }
  
    h4 {
      font-size: 1.2rem;
    }
  
    .navbar {
      flex-direction: column;
      gap: 15px;
    }
  
    .container {
      padding: 15px 20px;
      margin: 20px;
    }
  
    /* Stack text + image on small screens */
    .product-section {
      flex-direction: column;
    }
  
    .product-section .product-image {
      flex: none;
      width: 100%;
    }
  }

  /* ===== Header bar ===== */
  .header {
    padding: 20px;
  }
  
  .menu-button {
    background: none;
  border: none;
  color: #407ce2;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  }
  
  .menu-button:hover {
    opacity: 0.8;
  }
  
  .dots {
    font-size: 1.5rem;
    line-height: 1;
  }
  
  /* ===== Side menu ===== */
  .side-menu {
    position: fixed;
    top: 0;
    left: -280px; /* hidden by default */
    width: 280px;
    height: 100%;
    background-color: #fffdf9;
    box-shadow: 2px 0 15px rgba(0,0,0,0.15);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .side-menu.open {
    left: 0;
  }
  
  /* Side menu header */
  .side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .logo {
    max-width: 160px;
    height: auto;
  }
  
  .close-button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
  }
  
  /* Side menu links */
  .side-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #407ce2;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .side-menu a:hover {
    color: #f1d4b7;
  }
  
  /* ===== Overlay ===== */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
  }
  
  .overlay.show {
    opacity: 1;
    pointer-events: all;
  }

  .logo{
    max-width: 100px;
    max-height: 100px;
    margin-top: 20px;
    margin-bottom: -30px;
  }

  .logo1{
    max-width:250px;
    max-height:250px;
    display: block;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:-30px;
    margin-top: -50px;
  }
  
  .team-member {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* circular photo */
    flex-shrink: 0;
  }
  
  .member-text h2 {
    margin: 0;
    font-size: 1.4rem;
  }
  
  .member-text h4 {
    margin: 6px 0 10px;
    font-weight: normal;
    color: #666;
  }
  
  .member-text p {
    margin: 0;
    line-height: 1.5;
  }

  .header {
    color: #407ce2;
  }

  .endtext {
    color: #407ce2;
  }

  .picture {
    max-width: 500px;
    max-height: 500px;
    border-radius:30px;
    display: block;
    margin-left:auto;
    margin-right:auto;
  }
  
  .footer {
    background-color: #407ce2;
    color: #fff;
    padding: 30px 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer h3 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer p {
    margin: 6px 0;
  }
  
  .footer a {
    color: #d7e6ff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  