/* For top menu */
.header {
  background: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2%;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 2%;
}

/* For left side menu on index */
.side-menu {
  position: fixed;
  top: 2rem;
  left: 2rem;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  margin: 1vh 0;
}

.side-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 3vh;
}

/* main background on index */

.main {
  height: 100vh;
  background-image: url('images/1.jpeg'); 
  background-size: cover;    
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  margin-top: 4rem;
}

html, body {
      height: 100%;
      margin: 0;
      overflow: hidden; 
      font-family: 'Monument', sans-serif;
      overflow-x: hidden;
    }

/* Center contents inside logo-wrap */
.logo-wrap {
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

.logo-wrap img {
  width: 80vw;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

.logo-wrap h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0.5rem 0 0;
  color: #000;
}

.logo-wrap p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0.2rem 0;
  color: #333;
}

#svg-flex {
  display: flex;
  justify-content: center;
  text-align: center;
}

#svg-flex img {
  max-height: 5vh;
  max-width: 5vh;
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@font-face {
  font-family: 'RedHatItalic';
  src: url('fonts/RedHatText-Italic-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Monument';
  src: url('fonts/MonumentExtended-Regular.otf') format('opentype');
}