@font-face {
  font-family: 'Simula';
  src: url('/fonts/simula.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Simula';
  src: url('/fonts/simula.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --bg-color: #ffffff;
  --text-primary: #111111;
  --text-secondary: #555555;
  --font-serif: 'Simula', serif;
  --font-sans: 'Lexend', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  padding: 1.5rem 2rem;
  width: 100%;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
}

.nav-link:hover {
  opacity: 0.7;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.hero {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #111;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.hero-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero-button:hover {
  opacity: 0.8;
}

.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 6rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
  background-size: 32px 1px;
  background-repeat: repeat-x;
  margin-bottom: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-links a:hover {
  color: #000;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-watermark {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 1;
}

.watermark-icon {
  display: block;
  width: 80px;
  height: 80px;
  opacity: 0.06;
}

.watermark-text {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .header {
    padding: 1.25rem 1rem;
  }
  .logo-image {
    height: 20px;
  }
  .bg-stickers {
    display: none;
  }
  .hero-title {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }
  .hero-title br {
    display: none;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  .hero-subtitle br {
    display: none;
  }
  .footer-content {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .footer-watermark {
    gap: 0.75rem;
    bottom: -0.5rem;
    width: 100%;
    justify-content: center;
  }
  .watermark-text {
    font-size: 2.2rem;
  }
  .watermark-icon {
    width: 36px;
    height: 36px;
  }
}
