/* Basic styling for the Seuffi skeleton site */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f7f7;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
header {
    background-color: #ffffff;
    border-bottom: 4px solid #6FA8DC;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
header .logo img {
    max-height: 100px;
    width: auto;
}
header .logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
header nav {
    flex-grow: 1;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
header nav ul li {
    margin: 0 10px;
}
header nav ul li a {
    text-decoration: none;
    color: #355A67;
    font-weight: 600;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
}
header nav ul li a:hover {
    background-color: #6FA8DC;
    color: #fff;
}
main {
    padding-top: 20px;
    min-height: 60vh;
}
.hero {
    background-color: #6FA8DC;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.hero h1 {
    margin-top: 0;
    font-size: 2.5em;
}
.hero p {
    font-size: 1.2em;
}
.content {
    background-color: #ffffff;
    /* Horizontal padding added so the text inside the content section does not start flush with the left edge */
    padding: 20px 250px;
    margin-top: -20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
footer {
    background-color: #f0f0f0;
    border-top: 4px solid #6FA8DC;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}
footer ul.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
footer ul.footer-nav li {
    margin: 0 10px;
}
footer ul.footer-nav li a {
    color: #355A67;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer ul.footer-nav li a:hover {
    color: #6FA8DC;
}
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    header nav ul li {
        margin: 5px 0;
    }
}

/* Call to action section that appears below the main content on pages like home.php */
/* CTA section styling: add more separation and padding to make it stand out */
.cta-section {
    margin-top: 40px;
    background-color: #f7f7f7;
    padding: 60px 0;
    position: relative;
    text-align: center;
}

/* Optional decorative bar at the top of the CTA section */
/* A thicker decorative bar at the top of the CTA to draw attention */
.cta-section .highlight-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 100%;
    background-color: #F7C104; /* deeper golden accent */
}

/* Box that holds the call-to-action message */
/* CTA box styling: bigger, bolder and rounded to be more eye-catching */
.cta-section .cta-box {
    display: inline-block;
    background-color: #FFE600; /* bright yellow for high contrast */
    padding: 40px 60px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 2em;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}