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

body {
  font-family: "Helvetica", Arial, sans-serif;
  background: #26222d;
  color: #ffffff;
  min-height: 100vh;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #26222d;
  border-bottom: 1px solid #3d3547;
  z-index: 1000;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #875f98;
  border-radius: 25px;
  font-family: "Righteous", cursive;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 24px;
}

.hero h1 {
  font-family: "Righteous", cursive;
  font-weight: 400;
  font-size: 61px;
  line-height: 75px;
  max-width: 860px;
  margin-bottom: 48px;
}

.hero p {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 441px;
  margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .logo-text {
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 0px 24px 24px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero p {
    font-size: 14px;
  }
}
