
  /* ----- COLORS ----- */
  
    /* --primary: rgb(34, 34, 34);       Charcoal Black
    --secondary: rgb(140, 140, 140);    Warm Grey
    --secondary2: rgb(250, 245, 235);   Off-White / Light Beige
    --accent: rgb(255, 255, 255);       Soft Silver
    --neutral: rgb(255, 255, 255);      White */
   */

  /* ----- GLOBAL ----- */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
  }

  body {
    background-color: rgb(255, 255, 255);
    color: rgb(34, 34, 34);
    line-height: 1.6;
  }

  a {
    text-decoration: none;
    color: rgb(34, 34, 34);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* ----- HEADER ----- */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 5%;
    background-color: rgb(250, 245, 235);
  }

  header h1 {
    font-size: 2rem;
    font-weight: bold;
  }

  nav a {
    margin-left: 2rem;
    font-size: 1rem;
    color: rgb(34, 34, 34);
  }

  /* ----- HERO SECTION ----- */
  .hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    background-color: rgb(250, 245, 235);
  }

  .hero-text {
    flex: 1 1 400px;
    min-width: 300px;
  }

  .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    color: rgb(140, 140, 140);
    margin-bottom: 2rem;
  }

  .hero-text button {
    background-color: rgb(255, 255, 255);
    color: rgb(34, 34, 34);
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
  }

  .hero-text button:hover {
    background-color: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
  }


  .hero-image {
    flex: 1 1 400px;
    min-width: 300px;
    text-align: center;
  }

  /* ----- OUR WORK SECTION ----- */
  .our-work {
    padding: 3rem 5%;
  }

  .our-work h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .work-item {
    background-color: rgb(250, 245, 235);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgb(255, 255, 255);
  }

  .work-item img {
    border-radius: 4px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }

  /* ----- FOOTER ----- */
  footer {
    padding: 2rem 5%;
    background-color: rgb(250, 245, 235);
    text-align: center;
    color: rgb(140, 140, 140);
  }
  /* ------ Media Queries--------*/
  @media (max-width:768px) {
    .hero {
        flex-direction: column;
    }
    header {
        flex-direction: column;
        text-align: centre;
    }
    nav a {
        margin: 0.5rem;
    }
    .hero-text h2 {
        font-size: 1.8rem;
    }
  }

  @media (max-width:480px){
    .hero-text h2 {
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .hero-text button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    .work-item img {
        height: 250px;
    }
  }