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

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: url("/placeholder.svg?height=1080&width=1920") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 30px;
  object-fit: cover;
}

.hero-content h1 {
  font-size: 3.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 1.25em;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #eee;
}

/* About Section */
.about-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("/placeholder.svg?height=1080&width=1920") no-repeat center center;
  background-size: cover;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.about-section p {
  font-size: 1.15em;
  color: #ccc;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.merch-link {
  margin-top: 40px;
}

.merch-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.merch-button:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background-color: #000;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.newsletter-section p {
  font-size: 1.15em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #222;
  color: #fff;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #888;
}

.newsletter-form input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
  padding: 15px 25px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #eee;
}

.privacy-note {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9em;
  color: #888;
}

/* Responsive Design */
@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form button {
    width: auto;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8em;
  }

  .subtitle {
    font-size: 1.1em;
  }

  .about-section h2,
  .newsletter-section h2 {
    font-size: 2em;
  }

  .about-section p,
  .newsletter-section p {
    font-size: 1em;
  }

  .hero-section {
    min-height: 80vh;
  }

  .logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2em;
  }

  .subtitle {
    font-size: 0.95em;
  }

  .cta-button,
  .merch-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .about-section h2,
  .newsletter-section h2 {
    font-size: 1.8em;
  }

  .about-section,
  .newsletter-section {
    padding: 60px 0;
  }

  .logo {
    width: 100px;
    height: 100px;
  }
}
