/* Catppuccin Macchiato Palette */
:root {
  --base: #24273a;
  --mantle: #1e2030;
  --crust: #181926;
  --text: #cad3f5;
  --subtext0: #a5adcb;
  --surface0: rgba(54, 58, 79, 0.6);
  --mauve: #c6a0f6;
  --lavender: #b7bdf8;
  --blue: #8aadf4;
  --sapphire: #7dc4e4;
  --green: #a6da95;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--base);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Achtergrond animatie (blobs) */
.blob-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(var(--mauve), var(--blue));
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.3;
  animation: move 20s infinite alternate;
}

.blob:nth-child(2) {
  background: linear-gradient(var(--sapphire), var(--green));
  right: -100px;
  bottom: -100px;
  animation-delay: -5s;
}

@keyframes move {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(100px, 100px) rotate(360deg); }
}

/* Glass Card */
.glass-card {
  background: var(--surface0);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography */
h1, h2 {
  color: var(--lavender);
}

.liquid-text {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--mauve), var(--sapphire), var(--lavender));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: liquidFlow 5s linear infinite;
}

@keyframes liquidFlow {
  to { background-position: 200% center; }
}

a {
  color: var(--sapphire);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--mauve);
  text-shadow: 0 0 10px var(--mauve);
}

/* Contact & Socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.socials img {
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials img:hover {
  transform: scale(1.4) rotate(5deg);
}

/* Socials Grid */
.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.socials-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(198, 160, 246, 0.1);
  border: 1px solid rgba(198, 160, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.socials-grid a:hover {
  background: rgba(198, 160, 246, 0.25);
  border-color: rgba(198, 160, 246, 0.8);
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 12px 24px rgba(198, 160, 246, 0.3);
}

.socials-grid img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials-grid a:hover img {
  filter: drop-shadow(0 4px 12px rgba(198, 160, 246, 0.6));
  transform: scale(1.2);
}

/* Buttons & Lists */
.btn {
  display: inline-block;
  background: rgba(183, 189, 248, 0.1);
  border: 1px solid var(--lavender);
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 10px;
}

.btn:hover {
  background: var(--lavender);
  color: var(--base);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 30px 0;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: var(--subtext0);
}

/* Responsive */
@media (max-width: 600px) {
  .glass-card { padding: 20px; }
  .liquid-text { font-size: 2rem; }
}