:root {
    --cream: #FFFDD0;
    --gold: #D4AF37;
    --charcoal: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* Smooth Transitions */
.hero-content {
    animation: fadeIn 1.5s ease-out;
}

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

/* Timeline specific styles */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--gold);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

/* Admin Styles */
#admin-table-body tr {
    transition: background 0.2s;
}
#admin-table-body tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.status-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
}

.status-confirmed {
    background-color: #dcfce7;
    color: #166534;
}

.status-declined {
    background-color: #f3f4f6;
    color: #4b5563;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--gold) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}
