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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 80px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInDown 0.8s ease-out;
}

.temporary-message {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.message-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.message-subtext {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Main Content Styles */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Contact Styles */
.contact {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  animation: fadeIn 1s ease-out;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.contact-label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Footer Styles */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-color);
  color: white;
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-text {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    padding: 3rem 1.5rem;
  }

  .header-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .temporary-message {
    padding: 1.5rem;
  }

  .message-text {
    font-size: 1.25rem;
  }

  .message-subtext {
    font-size: 1rem;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }

  .contact-content {
    padding: 2rem 1.5rem;
  }

  .contact-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 0.875rem;
  }

  .contact-link {
    font-size: 1rem;
  }

  .footer {
    padding: 1rem 1.5rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 2rem 1rem;
  }

  .header-title {
    font-size: 1.75rem;
  }

  .message-text {
    font-size: 1.1rem;
  }

  .message-subtext {
    font-size: 0.95rem;
  }

  .contact-content {
    padding: 1.5rem 1rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .footer {
    padding: 0.875rem 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }
}

