@font-face {
  font-family: "OverusedGrotesk";
  src: url("./fonts/OverusedGrotesk-Roman.ttf") format("truetype"),
    url("./fonts/OverusedGrotesk-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("./fonts/OverusedGrotesk-SemiBold.ttf") format("truetype"),
    url("./fonts/OverusedGrotesk-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

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

/* Body & Background */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

/* Logo Container */
.logo-container {
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
}

.logo {
  width: 60%;
  height: auto;
}

/* Content Section */
.content {
  text-align: center;
}

.cody-img {
  width: 20%;
  margin-top: 2rem;
}

/* Notify Form */
.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 450px;
  flex-direction: column;
  margin: 2rem auto 0;
}

.message {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.5rem;
}

.notify-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  border: 1px solid black;
  border-radius: 25px;
  background: #ffffff;
  color: #000000;
  outline: none;
  text-align: center;
}

.notify-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.notify-input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
}

.notify-button {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-button:hover {
  background: #333333;
}

.notify-button:active {
  background: #000000;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .logo-container {
    max-height: 400px;
  }

  .notify-form {
    padding: 0 20px;
  }

  .cody-img {
    width: 35%;
  }

  .logo {
    width: 70%;
  }
}
