/* Custom Styles for The Purple Iris Tea Room */

/* Base Typography & Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #05130e;
    color: #f5f5f0;
}

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

::-webkit-scrollbar-track {
    background: #05130e;
}

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

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

/* Selection Color */
::selection {
    background: #c5a059;
    color: #05130e;
}

/* Utility Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Image Hover Effects */
img {
    transition: all 0.5s ease;
}

/* Form Focus States */
input:focus,
textarea:focus {
    border-bottom-color: #c5a059 !important;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Hover underline animation for links */
a.hover-underline {
    position: relative;
}

a.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #c5a059;
    transition: width 0.3s ease;
}

a.hover-underline:hover::after {
    width: 100%;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #c5a059 0%, #e5c585 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(15, 61, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
