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

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, #18181c 0%, #101012 100%);
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 3rem 1rem 1.2rem 1rem;
  background: #18181c;
  color: #f1f1f1;
  box-shadow: 0 2px 12px rgba(20, 20, 20, 0.15);
  position: relative;
}

.header-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F28750 40%, #222 100%);
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #F28750;
  transition: color 0.2s;
}

header h1:hover {
  color: #fff;
}

header p {
  font-size: 1.08rem;
  color: #b0b0b0;
  margin-bottom: 0.2rem;
}

main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.contact-card {
  background: #18181c;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 0;
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.25);
  border: 1.5px solid #23232a;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeIn 0.7s forwards;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(242, 135, 80, 0.18), 0 8px 24px rgba(20, 20, 20, 0.35);
  border-color: #F28750;
  transform: translateY(-4px) scale(1.01);
}

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

.contact-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  color: #F28750;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 1.08rem;
  color: #c0c0c0;
}

a {
  color: #F28750;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: #888;
  background: #18181c;
  border-top: 1px solid #23232a;
  margin-top: 2rem;
  letter-spacing: 0.5px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  header p {
    font-size: 0.95rem;
  }

  .contact-card {
    margin: 0 10px;
  }

  .contact-card h2 {
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 0.98rem;
  }

  main {
    padding: 0 0.3rem;
  }
}