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

body {
    background-color: #ffffff;
    color: #0a192f;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c5a028;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0a192f;
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes revealImage {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

.hero-anim {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-anim:nth-child(2) { animation-delay: 0.2s; }
.hero-anim:nth-child(3) { animation-delay: 0.4s; }
.hero-anim:nth-child(4) { animation-delay: 0.6s; }

.image-reveal {
    animation: revealImage 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.image-reveal-delayed {
    animation: revealImage 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.4s forwards;
    clip-path: inset(0 100% 0 0);
}

/* Reveal on Scroll Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.5s ease, visibility 0.5s;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-bottom-color: #d4af37;
}
