:root {
  scroll-behavior: smooth;
}

section[id],
a[id] {
  scroll-margin-top: 100px;
}

body {
  zoom: 0.9;
  -moz-transform: scale(0.9);
  -moz-transform-origin: 0 0;
}

.material-symbols-outlined {
  font-variation-settings: 
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.gradient-bg {
  background: linear-gradient(135deg, #b4ffc7 0%, #93bafd 100%);
  background-attachment: fixed;
}

.glass-card,
.glass-nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.pill-button {
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-button:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

#portfolio-modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#portfolio-modal.active {
  opacity: 1;
  pointer-events: auto;
}

#portfolio-modal .modal-container {
  transform: scale(1.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#portfolio-modal.active .modal-container {
  transform: scale(1);
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.lang-dropdown button {
  display: flex;
  align-items: center;
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 100;
}

.lang-dropdown-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.lang-dropdown:hover .lang-dropdown-content {
  display: block;
}

.lang-option {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(147, 186, 253, 0.1);
}

/* Contact form card — always in hover state of Etsy/Portfolio cards */
.contact-card {
  background: rgba(255, 255, 255, 0.1); /* transparant zoals hover */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.12);
  padding: 2rem;
  color: white; /* ALLE tekst wit */
}

/* Inputs match the card style */
.contact-card input,
.contact-card textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  width: 100%;
  color: white;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-card input:focus,
.contact-card textarea:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.contact-card label {
  color: #93bafd;
    
}

.contact-card input,
.contact-card textarea {
  color: rgba(255, 255, 255, 1);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 1);
}
