/* Custom Styles for Pho Golden */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfbf7; /* Phoe Cream */
}

/* Smooth fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Delay utilities */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Mobile menu transitions handled via Tailwind classes, but ensuring smoothness */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #064e3b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #04392b;
}

/* Form styles (if needed in future) */
input, textarea {
    background-color: transparent;
    border-bottom: 1px solid #064e3b;
    border-radius: 0;
    padding: 12px 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}
input:focus, textarea:focus {
    border-bottom-color: #d97706;
}
