/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', 'Siyam Rupali', serif;
    line-height: 1.6;
    color: #2C2C2C; /* Very dark gray text */
    background-color: #FAF9F6; /* Linen/off-white background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main.container {
    background: url('assets/images/paper-texture.png') repeat; /* Subtle paper texture */
    background-size: 200px 200px;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', 'Siyam Rupali', serif;
    color: #2C2C2C;
}

a {
    text-decoration: none;
    color: #4A90E2; /* Soft blue accent */
    transition: color 0.3s ease;
}

a:hover {
    color: #357ABD; /* Darker blue hover */
}






/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}





