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

body {
  font-family: "Crimson Text", serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

header {
  background-color: #000000;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.5rem;
  text-decoration: none;
}

.header-logo-link span {
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}

.header-logo {
  margin-top: -2px;
  height: 22px;
  width: auto;
}

header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: #666;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: white;
}

header h1 {
  font-size: 1.8rem;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: left;
}

main h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

main h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
}

.hero-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.construction-message {
  text-align: left;
  font-size: 18px;
  color: #000;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto;
}

.dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.site-logo {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease;
}

.card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.card.fade-in:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  color: #666;
}

footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer p {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content {
    grid-template-columns: 1fr;
  }
}
