/* Custom Styles for Santa Ana Downtown Plaza */

:root {
    --emerald-dark: #050f0a;
    --emerald-deep: #022c22;
    --emerald-mid: #064e3b;
    --emerald-light: #0f766e;
    --gold: #d4af37;
    --gold-light: #f59e0b;
    --cream: #f5f5dc;
    --cream-light: #faf9f6;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--emerald-dark);
    color: var(--cream);
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Gold Button */
.gold-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--emerald-dark);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gold-button:hover::before {
    left: 100%;
}

.gold-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Navigation */
.navbar.scrolled {
    background: rgba(5, 15, 10, 0.95);
    backdrop-blur-lg;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Navigation */
.mobile-nav-link {
    position: relative;
    padding-left: 0;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
    width: 20px;
}

/* Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.hidden {
    opacity: 0;
    transform: translateY(30px);
}

/* Decorative Elements */
.gold-accent-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Card Hover Effects */
.boutique-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.boutique-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Form Styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

::-webkit-scrollbar-track {
    background: var(--emerald-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald-mid);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
    
    .gold-button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .gold-button {
        background: var(--gold);
        color: black;
    }
}
