@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.project-header {
  text-align: center;
  padding: 60px 20px;
  background-color: #f2f2f2;
  color: #333;
}

.project-header h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.project-header p {
  font-size: 20px;
  color: #777;
}

.hero-project {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

.project-description {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
  color: #555;
}

.project-description h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.project-description p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Grid Layout for the Image Gallery */
.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 20px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(30%);
}

.gallery-item img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item.large {
  grid-column: span 2;
}

.shop-the-look {
  text-align: center;
  background-color: #f2f2f2;
  padding: 60px 20px;
}

.shop-the-look h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.shop-items {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.shop-items .item {
  text-align: center;
}

.shop-items .item img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.shop-items .item img:hover {
  transform: scale(1.1);
}

.project-footer {
  text-align: center;
  padding: 40px;
  background-color: #333;
  color: white;
  font-size: 14px;
}

.project-footer p {
  margin: 0;
}
/* Next Page Button */
.next-page {
  text-align: center;
  padding: 40px;
  background-color: #f2f2f2;
}

.next-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.next-button:hover {
  background-color: #555;
  transform: scale(1.1);
}
