/* styles.css */
html {
    background-image: radial-gradient(white 40%, #edbc73);
    background-repeat: no-repeat;
}
body {
    font-family: Arial, sans-serif;
    /* background: white to leaf-green gradient */
    background: linear-gradient(180deg, #ffffff 0%, #fffddf 25%, #ff794476 55%, #fee16b 100%);
    margin: 0;
    padding: 0;
    text-align: center;
    text-size-adjust: 100%;
}

nav {
    margin-top: 18px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.527);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: black;
}
nav a {
    display: inline-block;
    margin: 5px 10px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    background-color: #d48d3c;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.82);
    font-weight: bold;  
}
.navbar-nav a:hover {
    background-color: #c6761a;
}
nav a:hover {
    color: black;
}

header {
    position: sticky;
    top: 0;
    background-color: rgb(186, 106, 48);
    color: white;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-image: url(images/fall-leaves.jpg);
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    width: auto;
    border: rgba(0, 0, 0, 0.331) 2px solid;
}
.content p {
    margin-top: 5%;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}

/* Footer: unified, consistent .footer1 */
.footer1 {
    box-sizing: border-box;
    width: 100%;
    background-color: #c6761a; /* warm brownish-orange */
    color: #ffffff;
    text-align: center;
    padding: 1rem 1rem; /* consistent padding on all sizes */
    margin: 2rem 0 0 0; /* small top spacing, avoid very large margins */
    position: relative;
    left: 0;
    bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.footer1 p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

/* Keep the footer visually consistent across breakpoints */
@media (max-width: 599px) {
    .footer1 { padding: 0.9rem 0.75rem; }
    .footer1 p { font-size: 0.95rem; }
}
@media (min-width: 600px) and (max-width: 1199px) {
    .footer1 { padding: 1rem 1rem; }
    .footer1 p { font-size: 1rem; }
}
@media (min-width: 1200px) {
    .footer1 { padding: 1.1rem 1.25rem; }
    .footer1 p { font-size: 1.05rem; }
}

/* Backwards compatible footer p rules (keep center alignment) */
footer p {
    text-align: center;
}
.lugrasimo-regular { /*font to provide a unique style for titles*/
  font-family: "Lugrasimo", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}

@media (min-width: 600px) {
    nav a {
        margin: 0 15px;
        padding: 12px 24px;
        font-size: 1.1em;
    }
    .content p {
        font-size: 1.2em;
    }
    footer p {
        font-size: 1em;
    }
}
@media (min-width: 900px) {
    nav a {
        margin: 0 20px;
        padding: 14px 28px;
        font-size: 1.2em;
    }
    .content p {
        font-size: 1.4em;
    }
    footer p {
        font-size: 1.1em;
    }
}