/* Custom Fonts */
.font-cinzel {
    font-family: 'Cinzel Decorative', serif;
}

.font-marcellus {
    font-family: 'Marcellus', serif;
}

/* Hero Section */
.hero-section {
    background-position: center;
    background-size: cover;
}

/* Timeline Styles */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 0;
    }
    
    .timeline-content {
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .timeline-container::before {
        display: none;
    }
}

/* Artifact Card Hover Effect */
.artifact-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}