/* Base styles and utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a1a1a;
    color: #f8f7f4;
}

/* Sidebar Navigation */
.sidebar {
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgba(248, 247, 244, 0.6);
    border-left: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    border-left-color: #d4af37;
}

/* Mobile Menu */
.mobile-menu-btn {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mobile-overlay {
    backdrop-filter: blur(8px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4af37 0%, #b08d1f 100%);
    color: #022c22;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #f8f7f4;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Service Cards */
.service-card {
    backdrop-filter: blur(10px);
}

/* Gallery Items */
.gallery-item {
    cursor: pointer;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-header .reveal {
    transition-delay: 0.1s;
}

/* Input Focus Styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

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

/* Mobile Responsive */
@media (max-width: 1023px) {
    #sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #sidebar.open {
        transform: translateX(0);
    }

    main {
        margin-left: 0 !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
