/* Custom styles for Kheyson Med Spa */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F1412;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E5C158;
}

/* Selection color */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #F9F7F2;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

/* Gold gradient text utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold border glow effect */
.border-gold-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Image hover zoom effect */
img {
    transition: transform 0.7s ease;
}

/* Mobile menu transitions */
.mobile-link {
    transition: all 0.3s ease;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(15, 20, 18, 0.95) !important;
    backdrop-filter: blur(20px) !important;
}

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Button hover lift effect */
button,
a {
    transition: all 0.3s ease;
}

/* Card hover elevation */
.group:hover {
    transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}
