/* Reset and Base Styles */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Main Container */
#container {
  width: 1920px;
  height: 1080px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

/* Blurred Background */
.background {
  position: absolute;
  width: 1951.15px;
  height: 1265px;
  left: calc(50% - 1951.15px / 2 + 0.58px);
  top: calc(50% - 1265px / 2 - 68.5px);
  background: url('background.avif') center center / cover no-repeat;
  filter: blur(6.4px);
  transform: scaleX(-1);
  z-index: -1;
}

/* Floating Logo */
.logo {
  position: absolute;
  width: 612px;
  height: 612px;
  left: 50%;
  bottom: 247px;
  background: url('logo.png') center center / contain no-repeat;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

/* Title Text */
.title {
  position: absolute;
  width: 1208px;
  height: 167px;
  left: 50%;
  top: calc(50% - 167px / 2 - 367.5px);
  transform: translateX(-50%);
  font-family: 'Designer', sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  text-shadow: 0px 4px 2.2px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Header Bar (Apple Glass style) */
.header {
  position: relative;
  top: 0;
  left: 15px;
  right: -15px;
  height: 103px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  z-index: 9999;
}

/* Glass-style Nav */
.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  gap: 40px;

  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/background.png') center center / cover no-repeat;
  filter: blur(6.4px) brightness(1);
  z-index: -10; /* Force background behind everything */
}



.content-section {
  position: relative;
  z-index: 20;
  padding: 140px 60px 60px;
}


/* Navigation Items */
.nav-item {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.005em;
  text-decoration-line: underline;
  color: #ffffff;
  transition: color 0.2s;
}

.nav-item:hover {
  color: #ffcc00;
}

/* Floating Logo Animation */
@keyframes float {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-20px); }
  100% { transform: translateX(-50%) translateY(0); }
}
