/* Custom Styles for Gentleman Jack's Detailing Service */

/* Gold Gradient Button */
.gold-button {
    background: linear-gradient(135deg, #C9A84C 0%, #A67C2E 50%, #8B6914 100%);
    color: #0d0d0d;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.gold-button:hover {
    background: linear-gradient(135deg, #D4B85C 0%, #B8923A 50%, #9B7920 100%);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
}

.gold-button:active {
    transform: translateY(0);
}

/* Navigation */
.nav-fixed {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-fixed.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A84C, #A67C2E);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    animation: slideDown 0.3s ease;
}

.mobile-menu.hidden {
    animation: slideUp 0.3s ease;
}

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

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

.mobile-menu-link {
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    padding-left: 1rem;
    color: #C9A84C;
}

/* Hero Section */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.7) 50%, rgba(13, 13, 13, 1) 100%);
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Service Cards */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color 0.3s ease;
}

.gallery-item:hover::after {
    border-color: rgba(201, 168, 76, 0.5);
}

/* Form Styles */
input,
select,
textarea {
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C9A84C, #A67C2E);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D4B85C, #B8923A);
}

/* Selection */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #fff;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .gold-button {
        background: #C9A84C;
        color: #000;
    }

    .nav-fixed {
        background: #0d0d0d;
    }
}

/* Print Styles */
@media print {
    .nav-fixed,
    .scroll-indicator,
    .mobile-menu {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .gold-button {
        background: #000;
        color: #fff;
    }
}
