* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;

  /* background: linear-gradient(to right, #007BFF, #0056b3); */
  background: linear-gradient(
    to right,
    #007BFF 15%,
    #ADD8E6 50%
  );
}

.hero {
  /* background: linear-gradient(to right, #007BFF, #0056b3); */
  /* color: white;
  padding: 100px 20px;
  text-align: center; */

  position: relative;
  color: white;
  text-align: center;
  /* padding: 100px 20px; */
}

.hero-image {
  width: 100%;
  height: auto;
  /* Maintains the aspect ratio */
  aspect-ratio: 16 / 9;
  /* Ensures the 16:9 ratio */
  object-fit: cover;
  /* Ensures the image covers the entire width */
  display: block;
  margin-bottom: 20px;
  /* Adds spacing below the image */
  z-index: -1;
}

.hero .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    349deg,
    black 15%,
    transparent 50%
  );
  opacity: 65%;
}

.hero h1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(0%, -50%);
  font-size: 3.6em;
  /* margin-bottom: 0.5em; */
}

.hero p {
  font-size: 2.2em;
  /* margin-bottom: 1.5em; */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(40%, -20%);
  /* backdrop-filter: blur(5px) brightness(0.8); */
  color: white;
  /* mix-blend-mode: color-burn; */
}

.btn {
  background: white;
  color: #007BFF;
  padding: 0.75em 1.5em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.about {
  padding: 40px 20px;
  text-align: center;
  background-color: white;
}

.about h2 {
  margin-bottom: 1em;
  color: #007BFF;
}

.gallery {
  padding: 40px 20px;
  background-color: #e9f1fb;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 1.5em;
  color: #0056b3;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  padding: 10px;
  font-size: 0.95em;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  gap: 20px;
  /* Space between grid items */
  padding: 40px 20px;
}

.grid-item {
  position: relative;
}

.grid-item:nth-child(1) {
  transform: translateY(20px);
  /* Offset the first image */
}

.grid-item:nth-child(2) {
  transform: translateY(-20px);
  /* Offset the second image */
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
  position: relative;
  background-color: #0056b3;
  color: white;
  padding: 20px;
  display: flex;
  align-items: flex-end; /* Align items to the bottom */
  justify-content: space-between; /* Space out the copyright and YouTube link */
}

.copyright {
  font-size: 0.9em;
  margin: 0;
  align-self: flex-end; /* Ensure it stays at the bottom left */
}

.youtube-link {
  background: white;
  color: #0056b3;
  padding: 0.5em 1em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  top: -10px; /* Slightly above the copyright */
}

.coming-soon {
  background: linear-gradient(to right, #FFA500, #FF4500); /* Orange gradient */
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.coming-soon h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.coming-soon p {
  font-size: 1.2em;
}
