/* Custom styles and overrides */
:root {
    --color-coral-50: #fff7ed;
    --color-coral-100: #ffedd5;
    --color-coral-200: #fed7aa;
    --color-coral-300: #fdba74;
    --color-coral-400: #fb923c;
    --color-coral-500: #fb923c;
    --color-coral-600: #ea580c;
}

html {
    scroll-behavior: smooth;
}

/* Custom color classes */
.text-coral-500 { color: #fb923c; }
.text-coral-600 { color: #ea580c; }
.text-coral-50 { color: #fff7ed; }
.bg-coral-500 { background-color: #fb923c; }
.bg-coral-50 { background-color: #fff7ed; }
.bg-coral-100 { background-color: #ffedd5; }
.bg-coral-200 { background-color: #fed7aa; }
.border-coral-500 { border-color: #fb923c; }
.border-coral-100 { border-color: #ffedd5; }
.border-coral-300 { border-color: #fdba74; }
.hover\:text-coral-500:hover { color: #fb923c; }
.hover\:bg-coral-500:hover { background-color: #fb923c; }
.focus\:ring-coral-200:focus { --tw-ring-color: #ffedd5; }
.focus\:border-coral-500:focus { border-color: #fb923c; }

/* Blob animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Font families */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Focus styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none;
}

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

#mobile-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}
