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

body {
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F9F0F6;
}
::-webkit-scrollbar-thumb {
    background: #D49AB5;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #BE7090;
}

/* Navbar */
#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 251, 240, 0.95);
    backdrop-blur-lg;
    box-shadow: 0 4px 30px rgba(107, 58, 93, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5A623;
    transition: width 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #F5A623 0%, #E8911A 100%);
    color: #2F1827;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-blur-sm;
    color: white;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Badges */
.badge-plum {
    display: inline-block;
    background: linear-gradient(135deg, #E8C3D9 0%, #D49AB5 100%);
    color: #4D2842;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-amber {
    display: inline-block;
    background: rgba(245, 166, 35, 0.2);
    color: #F5A623;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Cards */
.card-plum {
    background: #F9F0F6;
    border: 1px solid rgba(212, 154, 181, 0.3);
    box-shadow: 0 4px 20px rgba(107, 58, 93, 0.08);
    transition: all 0.3s ease;
}

.card-plum:hover {
    box-shadow: 0 8px 40px rgba(107, 58, 93, 0.15);
    transform: translateY(-4px);
}

/* Inputs */
.input-plum {
    background: white;
    color: #3E2035;
}

.input-plum::placeholder {
    color: #D49AB5;
}

/* Mobile Nav */
.mobile-nav-link {
    position: relative;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .font-display {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}
