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

html, body {
  height: 100%;
  font-family: sans-serif;
  overflow-x: hidden;
}

.background {

  /* Gradient overlay fading to white at the bottom */
  background: url('../images/Background.jpg') no-repeat center center;
    
  background-size: cover;
  background-attachment: scroll;
  position: relative;
}

/* Top-right navigation */
header {
  position: absolute;
  right: 30px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

/* Centered logo */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.logo {

  max-width: 50vw;
  height: auto;
}

#ribbonCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== About Section ===== */
.about-section {
  margin-top: 10vh;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.about-title {
  flex: 1;
  font-size: 3rem;
  font-weight: bold;
  color: #FFA134; /* Matches ribbon color */
}

.about-text {
  flex: 2;
  font-size: 1.2rem;
  color: #333;

}
.video-section {
  width: 100%;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .background {
    /* Gradient overlay fading to white at the bottom */
    background: url('../images/Background.jpg') no-repeat center center;
      
    background-size: cover;
    background-attachment: scroll;
    position: relative;
  }
  .logo {

    max-width: 90vw;
    height: auto;
  }

  .about-section {
    margin-top: 50vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-color: transparent;
    position: relative;
    z-index: 1;
  }
  
  .video-section {
display:none;
}
}