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

body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  scroll-behavior: smooth;
  background-color: #08080B;
  overflow-x: hidden;
}

/* ------------------ PAGE 1 ------------------ */
.main-screen {
  height: 100vh;
  position: relative;
  background: url("/img/Component 6.svg") no-repeat center bottom;
  background-size: 100% auto;
}

.name-bar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  text-align: center;
  margin-top: 78px;
  pointer-events: none;
}

.under-name{
  position: absolute;
  top: 60px;
  margin-top: 150px;
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 10px;

}

.under-name img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.under-name img:hover {
  transform: scale(1.05);
}

.name-bar h1 {
  font-size: 3.5rem;
  color: white;
  margin: 0;
  pointer-events: auto;
}
h1:hover{
  color: rgb(185, 185, 185);
}

/* Responsive Font Sizes */
@media (max-width: 1200px) {
  .main-screen {
    background-size: auto 100%;
  }
  .name-bar {
    top: 40px;
  }
  .under-name{
    top: 45px;
  }
}

@media (max-width: 768px) {
  .name-bar {
    top: 30px;
  }
  .name-bar h1 {
    font-size: 2.5rem;
  }
  
  .under-name{
    top: 15px;
  }
}



/* ------------------ PAGE 2 ------------------ */
.info-screen {
  height: 100vh;
  background: black url("/img/section2.svg") no-repeat center top;
  background-size: cover;
  padding: 60px 20px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  transition: opacity 0.3s ease;
  animation: fadeInUp 1s ease;
  z-index: 1;
}

/* ------------------ Circle Buttons ------------------ */
.circle-buttons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index:10;
}

:root {
  --btn-size: clamp(60px, 10vw, 100px);
}


.circle-btn {
  width: var(--btn-size);
  height: var(--btn-size);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  background-image: url("/img/circular_button.svg");
  background-size: 140%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
  transition: 0.3s;
  z-index: 1;
}

.circle-btn:hover {
  box-shadow: 0 0 20px rgba(225, 212, 212, 0.404);
  transform: scale(1.02);
}

/* Positioning
.b1 { bottom: 200px; left: 10px; }
.b2 { bottom: 200px; right: 10px; } */
.b1 { bottom: 105px; left: 10px; }
.b2 { bottom: 105px; right: 10px; }
.b3 { bottom: 10px; left: 10px; }
.b4 { bottom: 10px; right: 10px; }

@media (max-width: 768px) {
  .circle-buttons {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    pointer-events: auto;
    padding: 10px 0;
  }

  .circle-btn {
    position: relative;      
    height: 50px;
    width: 50px;
    font-size: 12px;
    background-size: 120%;
    
  }

  /* Remove old corner positions */
  .b1,.b2,.b3,.b4{
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}


/* ------------------ Animations ------------------ */
.fade-zoom {
  animation: fadeZoom 0.4s ease-in-out;
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
