/* 
  Gouvion Heating and Air - Custom Styles
  Premium Dark Luxury Theme
*/

:root {
    --color-forest: #1a4d2e;
    --color-gold: #d4af37;
    --color-charcoal: #121212;
    --color-surface: #1e1e1e;
}

body {
    background-color: var(--color-charcoal);
    color: #f8f7f4;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-forest);
    border: 1px solid var(--color-gold);
}

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

/* Fade In Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Input Focus Styles */
input:focus, textarea:focus, select:focus {
    border-bottom-color: #d4af37 !important;
    background-color: #252525;
}
