html, body {
  min-height: 100%;
  margin: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: rgb(61, 132, 255);
  overflow-x: hidden;
}

.wrapper {
  height: 100vh;        /* defines maximum vertical space */
  overflow: hidden;     /* prevents scroll propagation */
}

.scroll-area {
  height: 100%;
  overflow-y: auto;     /* enables constrained scrolling */
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgb(255, 255, 255);
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.lang-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#lang-dropdown {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Logo container (link) */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 1.05rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Auth buttons container */
.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-login {
  color: rgb(61, 132, 255);
  background-color: transparent;
  border: 2px solid rgb(61, 132, 255);
}

.btn-login:hover {
  color: rgb(90, 180, 65);
}

.btn-signup {
  color: white !important;
  background-color: rgb(61, 132, 255);
  border: 2px solid rgb(61, 132, 255);
}

.btn-signup:hover {
  background-color: rgb(40, 100, 200);
  border-color: rgb(40, 100, 200);
  transform: scale(1.05);
  color: rgb(90, 180, 65) !important;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  text-decoration: none;
  padding: 0.8rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

/* Hover-specific effects */
.btn:hover {
  background-color: #fff;
  transform: scale(1.075);
  color: #000;
}


.hero {
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  /*
  justify-content: center;
  align-items: center;
  text-align: center;
  */

  justify-content: center;   /* vertical center */
  align-items: flex-start;   /* left */
  padding-left: 4rem;        /* adjust as needed */
}

/* Add the dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* Adjust opacity as needed */
  z-index: 0;
}

/* Make sure text appears above overlay */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 40%;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* optional */
  width: 420px;        /* REQUIRED */
}

.story {
  background: #0a0a0a;
  color: #ddd;
  padding: 5rem 8%;
  line-height: 1.7;
}

.story h2 {
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

a:hover {
  color:rgb(90, 180, 65);
}

/* Clean minimal scroll arrow like Squarespace */
/* Clean minimal scroll arrow with soft glow + halo */
#scrollToBottom {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  font-size: 2rem !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  color: white !important;

  animation: sqScroll 3.5s ease-in-out infinite;
  opacity: 0.85;

  /* Soft glow */
  text-shadow:
    0 0 6px rgba(255,255,255,0.9),
    0 0 12px rgba(255,255,255,0.5),
    0 0 20px rgba(255,255,255,0.25);
}

/* Halo circle behind arrow */
#scrollToBottom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05),
    transparent
  );
  z-index: -1;
}

@keyframes sqScroll {
  0% {
    opacity: 0.15;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
  100% {
    opacity: 0.15;
    transform: translateX(-50%) translateY(0);
  }
}

.hero .btn {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.hero .btn:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.65);
  color: rgb(100, 230, 65);
}


