/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9f9f9; /* Light Gray Background */
    color: #333; /* Dark Text */
  }
  
  /* Header Styling */
  header {
    background-color: #003262; /* Berkeley Blue */
    color: white;
    padding: 1.5rem;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.2rem;
    color: #FDB515; /* California Gold */
  }
  
  /* Housemates Container */
  .housemates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  /* Individual Housemate Cards */
  .housemate {
    border: 2px solid #ddd;
    border-radius: 12px;
    background-color: #fff; /* White Background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 220px; /* Card Width */
    height: 320px; /* Card Height */
    padding: 1.2rem;
    transition: transform 0.3s ease-in-out;
  }
  
  .housemate img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  
  .housemate h3 {
    color: #003262; /* Berkeley Blue for Names */
    margin-bottom: 0.5rem;
  }
  
  /* Hover Effect */
  .housemate:hover {
    transform: scale(1.05); /* Slight Zoom */
    border-color: #FDB515; /* California Gold Highlight */
  }
  @media (max-width: 600px) {
    /* Housemates Container */
    .housemates-container {
      flex-direction: column; /* Stack cards vertically */
      gap: 1rem; /* Adjust spacing */
    }
  
    /* Housemate Cards */
    .housemate {
      width: 90%; /* Take most of the screen width */
      margin: 0 auto; /* Center each card */
    }
  
    /* Gallery Images */
    #gallery img {
      width: 90%; /* Make gallery images responsive */
      margin-bottom: 1rem;
    }
  }
  /* Footer Styling */
  footer {
    background-color: #FDB515; /* California Gold */
    color: #003262; /* Berkeley Blue Text */
    padding: 1rem;
    margin-top: 2rem;
  }
  
  footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* Section Titles */
  h2 {
    color: #003262; /* Berkeley Blue */
    margin-bottom: 1rem;
  }