/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Offset for fixed header */
}

body {
    font-family: 'Playwrite DE Grund', 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-royal);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Content typography with new primary font */
p, a, span, li, div:not(.hero-title):not(.section-title):not(.nav-logo):not(h1):not(h2):not(h3):not(h4) {
    font-family: 'Playwrite DE Grund', 'Crimson Text', serif;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--medieval-blue);
    margin-bottom: 1rem;
}