@import url('design/design-tokens.css');

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-large);
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}

section {
  padding: var(--spacing-xlarge) var(--spacing-large);
  max-width: 1200px;
  margin: 0 auto;
}

section:first-of-type {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-medium);
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-large);
  box-shadow: var(--card-shadow);
  margin-bottom: var(--spacing-large);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.embed-container {
  width: 100%;
  height: 800px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  text-align: center;
  padding: var(--spacing-large);
  background: var(--primary-color);
  color: white;
}
