/* style.css */
body { 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}
.parallax { 
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
}
.gradient-btn { 
    background: linear-gradient(to right, #06b6d4, #0e7490); /* Cyan tones for contrast */
    transition: all 0.3s ease; 
}
.gradient-btn:hover { 
    transform: scale(1.05); 
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6); 
}
.animate-fade-in { 
    animation: fadeIn 1.5s ease-in-out; 
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
#contact-modal.show {
    display: flex;
}
#contact-modal .scale-95.show {
    scale: 1;
}