@font-face {
  font-family: "InnovenceFontBold"; /* Give a name to your font */
  src: url("./Font/NeoBold/Neo\ Sans\ Std\ Bold.otf") format("opentype"); /* for older browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "InnovenceFontLight"; /* Give a name to your font */
  src: url("./Font/NeoRegular/Neo\ Sans\ Std\ Regular.otf") format("opentype"); /* for older browsers */
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "InnovenceFontBold";
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background-color: transparent;
  color: black;
  padding: 20px 0;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}

.logo-wrapper {
  position: absolute;
  left: 10px; /* Adjust the left position as needed */
  z-index: 1; /* Ensure the logo is above the video */
}

.logo {
  width: 200px; /* Adjust the width of the logo as needed */
  height: auto; /* Maintain aspect ratio */
  transition: width 0.3s ease, top 0.3s ease; /* Smooth transition for changes */
}

header.scrolled h1 {
  opacity: 0;
}

.introduction {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image {
  width: 100%;
  max-height: 100%;
  object-fit: cover; /* Cover the entire area */
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

h2 {
  font-size: 3vw; /* Larger font size for heading, responsive */
  color: black;
}

p {
  margin-top: 10px;
  font-size: 1.5vw; /* Larger font size for text, responsive */
  color: black;
  margin-bottom: 12rem;
}

h1 {
  margin: 0;
  font-size: 2.5em;
}

.block {
  display: flex;
  align-items: flex-start;
}

.zoom {
  width: 50%; /* Suitable width for image */
  max-width: 1000px; /* Maximum width */
}

.text-container {
  background-color: rgba(
    255,
    255,
    255,
    0.8
  ); /* Nice overlay color with some transparency */
  border-radius: 10px; /* Rounded edges */
  padding: 20px; /* Padding inside the container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow for better visibility */
  display: inline-block; /* Adjust width based on content */
}

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

.gallery-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: calc(25% - 20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

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

.scroll-container {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  max-height: 100vh;
  background-color: aliceblue;
}

section {
  scroll-snap-align: start;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.full-width-blocks .block {
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
