/* Base styles */

body {
    font-family: "Kalam", cursive;
    background: linear-gradient(
        135deg,
        var(--cream-light) 0%,
        var(--cream) 50%,
        #f0d9a8 100%
    );
    background-attachment: fixed;
    color: var(--color-text);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    line-height: 1.7;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 2rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 1.5rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-link {
    color: var(--cream);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--mustard);
}
