/* Variables */
:root {
    --coffee-dark: #4E342E;
    --mocha: #6F4E37;
    --cream: #F7F1E1;
    --gold: #C8A165;
    --white: #FFFFFF;
    --text-main: #3E2723;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px -10px rgba(78, 52, 46, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Prompt', sans-serif; background-color: var(--cream); color: var(--text-main); line-height: 1.7; }
h1, h2, h3, h4, .serif-font { font-family: 'Prompt', serif; }

/* Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.btn { display: inline-block; padding: 12px 32px; border-radius: 50px; text-decoration: none; transition: 0.3s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--coffee-dark); color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--coffee-dark); border-color: var(--coffee-dark); }
.btn-outline { border: 2px solid var(--coffee-dark); color: var(--coffee-dark); background: transparent; }
.btn-outline:hover { background: var(--coffee-dark); color: var(--gold); }

/* Navigation */
.navbar { background: rgba(255,255,255,0.95); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display'; font-weight: bold; font-size: 1.5rem; color: var(--coffee-dark); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Components */
.section-title { font-size: 2.5rem; color: var(--coffee-dark); margin-bottom: 20px; display: inline-block; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto; }
img { max-width: 100%; border-radius: var(--radius-md); }

/* Forms */
.form-control { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Prompt'; }
.card { background: white; padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); margin-bottom: 20px; }

/* Timeline CSS (Added) */
.timeline { position: relative; max-width: 800px; margin: 40px auto 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--gold); transform: translateX(-50%); }

.timeline-item { position: relative; margin-bottom: 40px; width: 50%; padding: 0 40px; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-dot { position: absolute; top: 0; width: 20px; height: 20px; background: var(--coffee-dark); border: 3px solid var(--cream); border-radius: 50%; z-index: 10; }
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.time-card { background: white; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.time-header { font-size: 1.25rem; font-weight: 600; color: var(--mocha); margin-bottom: 5px; }
.time-detail { color: #888; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { flex-direction: column; gap: 10px; font-size: 0.9rem; }
    .hero-content h1 { font-size: 2.5rem; }
    
    /* Mobile Timeline */
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 60px; padding-right: 0; text-align: left !important; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot { left: 10px; right: auto; }
}