/* style.css – Dark modern design with glassmorphism */

:root {
  --bg-color: hsl(220, 12%, 10%);
  --card-bg: hsla(220, 12%, 15%, 0.6);
  --text-color: hsl(0, 0%, 90%);
  --accent: hsl(210, 80%, 55%);
  --font-family: 'Inter', sans-serif;
}

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

html, body {
  height: 100%;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: fadeIn 0.8s ease-out;
}

.logo {
  width: 96px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.08);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.note {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  color: hsl(0, 0%, 75%);
}

.contact h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.contact p {
  margin: 0.3rem 0;
}

.contact a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.webdesign {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  color: hsl(0, 0%, 45%);
  letter-spacing: 0.3px;
}

.webdesign a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.webdesign a:hover {
  color: #ff8c33;
}
