/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Header */
.top-bar {
  position: fixed;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #ff4d88;
}

.cta-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: white;
  color: #000;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}


.cta-button:hover {
  background-color: #ff4d88;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

/* Hero Overlay Tint */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* <-- Change 0.3 to adjust darkness (0 = transparent, 1 = full black) */
  z-index: 1;
}

.headline {
  font-size: 60px;
  font-weight: 765;
  color: white;
  margin-bottom: 20px;
}

.subtext {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
}

.hero {
  height: 100vh;
  background-image: url('index.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}


/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Popup Form Container */
.popup-form {
  background: white;
  color: black;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
}

.popup-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.popup-form input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-form button {
  width: 100%; /* Add this line */
  background-color: #ff4d88;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}


.popup-form button:hover {
  background-color: #e0447a;
}

.popup-form .disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: #555;
  text-align: left;
  max-height: 150px;
  overflow-y: auto;
}


#queueNumber {
  color: #ff4d88;
  font-weight: 800;
}

