* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
.header {
  grid-area: header;
  background-color: white;
  text-align: center;
  font-size: 18px;
  border-style: solid;
  border-color: #6F4E37;
}

nav {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #A67B5B;
    position: relative;
    height: 70px;
}

.logo {
    display: flex;
    color: #6F4E37;
    justify-content: center;
    align-items: center;

}

.logo img {
    display: inline;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin: 5px;
    border-style: solid;
    border-color: #6F4E37;
}

.logo h2 {
    display: inline;
    color: #ECB176;
    margin: 5px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon img{
    height: 30px;
    width: 30px;
    color: white;
}

/* The grid container */
.grid-container {
  display: grid;
  grid-template-areas: 
    'header header header header header header' 
    'left middle middle middle middle right' 
    'footer footer footer footer footer footer';
  /* grid-column-gap: 10px; - if you want gap between the columns */
} 

.left,
.right {
  padding: 10px;
  /* height: 100vh; */
  background-color: #FED8B1;
  border-style: solid;
  border-color: #6F4E37;
}

.middle {
    padding: 10px;
    /* height: 100vh; */
    background-color: #FED8B1;
    border-style: solid;
    border-color: #6F4E37;
}

.heroImage {
    height: 300px;
    width: 500px;
}

/* Style the left column */
.left {
  grid-area: left;
}

/* Style the middle column */
.middle {
  grid-area: middle;
}

/* Style the right column */
.right {
  grid-area: right;
}

/* Style the footer */
.footer {
  grid-area: footer;
  background-color: #ECB176;
  padding: 10px;
  text-align: center;
  border-style: solid;
  border-color: #6F4E37;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .grid-container  {
    grid-template-areas: 
      'header header header header header header' 
      'left left left left left left' 
      'middle middle middle middle middle middle' 
      'right right right right right right' 
      'footer footer footer footer footer footer';
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: #ECB176;
    gap: 5px;
    overflow: hidden;
  }

  nav ul li {
    margin: 10px;
    width: 100%;

  }

  .menu-icon {
    display: block;
  }

  #menuList {
    transition: all 0.5s;
    border-style: solid;
    border-color: #6F4E37;
  }

}


.image-grid {
	--gap: 16px;
	--num-cols: 4;
	/* --row-height: 300px; */
    --row-height: 100%;

	box-sizing: border-box;
	padding: var(--gap);

	display: grid;
	grid-template-columns: repeat(var(--num-cols), 1fr);
	grid-auto-rows: var(--row-height);
	gap: var(--gap);
}

.image-grid>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-grid-col-2 {
	grid-column: span 2;
}

.image-grid-row-2 {
	grid-row: span 2;
}

/* Anything udner 1024px */
@media screen and (max-width: 1024px) {
	.image-grid {
		--num-cols: 2;
		--row-height: 200px;
	}
}

