:root {
    --plum-900: #3d1a35;
    --plum-800: #4a1c40;
    --plum-700: #5c2352;
    --amber-600: #c4841d;
    --amber-500: #d4a017;
    --amber-400: #e8b84b;
    --stone-50: #faf9f7;
    --stone-100: #f5f3ef;
    --stone-400: #9c9690;
    --stone-500: #6b6560;
    --stone-600: #4a4540;
    --stone-800: #2a2520;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

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

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
#navbar {
    background: transparent;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

#navbar.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(61, 26, 53, 0.08);
}

/* Hero Animations */
.hero-sub {
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-desc {
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-cta {
    animation: fadeUp 0.8s ease forwards 1s;
}

.hero-scroll {
    animation: fadeUp 0.8s ease forwards 1.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Cards */
.service-card {
    transition: all 0.5s ease;
}

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

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

/* Mobile Menu */
#mobileMenu.open {
    opacity: 1;
    pointer-events: all;
}

#mobileMenu.closed {
    opacity: 0;
    pointer-events: none;
}

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

/* Menu Button */
.menu-line {
    transition: all 0.4s ease;
}

#menuBtn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

#menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
}

#menuBtn.active .menu-line:nth-child(3) {
    width: 24px;
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Selection */
::selection {
    background: rgba(61, 26, 53, 0.15);
    color: var(--plum-900);
}

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

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--plum-900/30);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--plum-900/50);
}

/* Service label animation */
.service-label {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-label.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery hover */
.aspect-square {
    transition: transform 0.3s ease;
}

/* Select styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a1c40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
}

/* Smooth image loading */
img {
    image-rendering: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
