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

html, body {
    width: 100%;
    overflow-x: hidden;
}

.GyHeader {
    position: fixed;
    display: flex;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    padding: 3px 50px;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.23);
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(255, 255, 255, 0.36);

}

.GyNav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 6vw, 100px);
}

.GyNavLink1, .GyNavLink2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(16px, 2vw, 24px);
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.GyNavLink1:hover, .GyNavLink2:hover {
    color: #ffc400;
}
.GyLogo {
    padding-top: 3px;
    width: clamp(36px, 5vw, 60px);
    height: clamp(36px, 5vw, 60px);
}

.GyVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.GyHero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 7vw 12vh;
    z-index: 1;
}

.HeroFirst, .HeroSecond {
    font-family: 'Instrument Serif', serif;
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 6rem);
    left: 10vw;
    top: 42vh;

    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.5);

    text-shadow:
    -2px -2px 4px rgba(255, 255, 255, 0.6),
    -1px -1px 2px rgba(255, 255, 255, 0.4),
    0px -1px 0px rgba(255, 255, 255, 0.8),
    2px 2px 4px rgba(0, 0, 0, 0.5),
    1px 1px 3px rgba(0, 0, 0, 0.4),
    0px 0px 20px rgba(255, 255, 255, 0.15),
    0px 0px 8px rgba(255, 255, 255, 0.1);
}

.HeroSecond {
    top: 52vh;
}

.GyBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, 35%, black);
    z-index: 1;
}
.GyScrolled {
    position: relative;
    background-image: url('assets/backimg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no repeat;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.GyScrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px) brightness(0.09);
    -webkit-backdrop-filter: blur(1px) brightness(0.09);
}

.GyScrolledText {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 5%;
    margin-top: 20vh;
}

.soph {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 5vw, 70px);
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    padding: 0 5%;
    margin-top: 20vh;

}

.GyFooterContainer {
  position: relative;
  background-color: transparent;
  width: 100%;
  margin-top: auto;
  padding: 0 2.5%;
  padding-bottom: 20px;
}

.GyFooterInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  gap: 20px;
}

.GyFooterLeft {
  display: flex;
  align-items: center;
  gap: 16px;
}

.GyFooterRight {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theline {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  margin-bottom: 16px;
}

.GyFooterText {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(12px, 1.5vw, 20px);
  color: #ffffff;
}

.GyFooterLogo {
  height: clamp(20px, 2.5vw, 32px);
  width: auto;
}

.OnlineTag {
  height: clamp(18px, 2vw, 28px);
  width: auto;
}

