/* Custom Styles for Bryan Dorn Medical & Health */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #E6D5C3;
    font-family: 'Manrope', sans-serif;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

/* Hero Animations */
.hero-subtitle {
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-title {
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-text {
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(230, 213, 195, 0.1);
}

/* Mobile Menu */
.mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.mobile-menu-open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-open .mobile-link:nth-child(4) { transition-delay: 0.4s; }

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

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

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

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

/* Input Focus Styles */
input:focus, textarea:focus {
    border-color: #C25A4B !important;
}

/* Form Success Animation */
#success-message {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}
