/* Main Page Styles */
.column {
	display: flex;
	flex-direction: column;
	font-family: "Oswald", Arial, sans-serif;
}

.row1 {
  background-image: linear-gradient(to bottom right, #1D3A02, #1F3F00, #3B7500);
  color: #EFF0C7;
  box-shadow: 5px 5px black;
  border-radius: 0px 0px 40% 40%;
  padding: clamp(4rem, 5vw, 5rem) clamp(5rem, 5vw, 10rem);
}

.row1 h1 {
  font-size: clamp(40px, 5vw, 60px);
  text-shadow: 5px 5px 2.5px black;
  margin-top: 18vh;
}

.row2 {
  display: flex;
  justify-content: center;
  height: auto;
  color: #1F3F00;
  padding: 5% 5%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
}

.gallery-card {
	background: #EFF0C7;
	border: 3px solid #000;
	box-shadow: 5px 5px black;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-width: 420px;
}

.gallery-card:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px black;
}

.gcard-art-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.gcard-art {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	transition: transform 0.4s ease;
}

.gallery-card:hover .gcard-art {
	transform: scale(1.01);
}

.gcard-info {
	padding: 0.9rem 1rem 1.1rem;
}

.gcard-type {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.95rem;
	letter-spacing: 3px;
	color:  #1F3F00;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .row1 {
    border-radius: 0px 0px 20% 20%;
    padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 5vw, 5rem);
  }

  .row2 {
    padding: 8% 4%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    max-width: 100%;
  }
}

