.parchment {
    background-image: 
        radial-gradient(circle at 20px 50px, #f0f0f0 2px, transparent 2px),
        radial-gradient(circle at 40px 80px, #f0f0f0 1px, transparent 1px),
        linear-gradient(45deg, transparent 49.5%, rgba(139, 21, 56, 0.03) 50%, transparent 50.5%);
    background-size: 100px 100px, 60px 60px, 20px 20px;
}

.parchment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(245, 245, 220, 0.1) 25%,
        transparent 25%,
        transparent 75%,
        rgba(245, 245, 220, 0.1) 75%
    );
    background-size: 2px 2px;
    pointer-events: none;
    opacity: 0.3;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #8B1538 #F5F5DC;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #F5F5DC;
}

*::-webkit-scrollbar-thumb {
    background-color: #8B1538;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #6B1028;
}

textarea:focus,
input:focus {
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

button {
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

.font-playfair {
    letter-spacing: 0.025em;
}

.font-crimson {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .text-3xl {
        font-size: 1.75rem;
    }
}