@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding-top: 90px;
    scroll-padding-top: 90px; /* for anchor links */
    margin: 0;
}
/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
/* Copy button hover effect */
button:hover i {
    color: #10B981;
    transition: color 0.2s ease;
}
/* Logo styles */
.logo, .navbar img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  object-fit: contain;
}
.logo:hover {
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.15));
  transform: translateY(-2px);
}
/* Contact buttons sizing */
#kontakt button {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

#kontakt button i {
    width: 16px;
    height: 16px;
}
/* Responsive text sizes */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}