/* Import Google Fonts - Match your flyer's character */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Varela+Round&family=Pacifico&display=swap');

/* --- General Body & Base Styles --- */
body {
    font-family: 'Varela Round', sans-serif; /* Rounded sans for body text */
    background-color: #F8F5EB; /* Soft Off-White/Cream background */
    color: #333333; /* Dark gray for general text */
    line-height: 1.6;
}

/* --- Headings Styles --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Alfa Slab One', serif; /* Bold slab serif for headings */
    color: #001F3F; /* Deep navy blue for headings */
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1); /* Subtle text shadow for depth */
    text-transform: uppercase; /* Match flyer's all-caps headings */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
h1 { font-size: 3.5rem; } /* Adjust sizes as needed */
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* --- Specific Elements Styling --- */

/* Navigation Bar - Customize Ananke's nav */
.site-header {
    background-color: #FFFFFF; /* White nav bar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
    border-bottom: 2px solid #E2E8F0; /* Light border */
    border-radius: 0 0 1.5rem 1.5rem; /* Rounded bottom corners */
    padding: 1rem 2rem;
}
.site-title {
    font-family: 'Pacifico', cursive; /* Script font for site title */
    font-size: 2.5rem;
    color: #004080; /* Medium blue */
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
    text-transform: none; /* Keep script font natural case */
}
.main-navigation a {
    font-family: 'Varela Round', sans-serif;
    font-weight: bold;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* Pill shape for nav links */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.main-navigation a:hover {
    background-color: #0056B3; /* Strong blue hover */
    color: white;
}

/* Sections - Apply rounded corners and shadows to content areas */
.post-content, .page-content {
    background-color: white;
    border-radius: 1.5rem; /* Rounded corners for content blocks */
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1); /* Stamped shadow */
    padding: 2.5rem;
    margin-bottom: 2rem; /* Space between sections */
    border: 2px solid #E2E8F0; /* Subtle border */
}

/* Buttons (if any are generated by theme) */
.button {
    background-color: #003366; /* Deep nautical blue */
    color: white;
    padding: 0.85rem 2.25rem;
    border-radius: 9999px; /* Fully rounded pill shape */
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #1a4a7a; /* Stamped/embossed shadow */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #001a33;
    display: inline-block; /* Ensure padding works */
}
.button:hover {
    background-color: #004488;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a4a7a;
}

/* Footer Styles */
.site-footer {
    background-color: #0f172a; /* Deep charcoal/navy for footer */
    color: white;
    border-radius: 1.5rem 1.5rem 0 0; /* Rounded top corners */
    padding: 2rem 1rem;
    text-align: center;
}
.site-footer a {
    color: #93c5fd; /* Light blue for footer links */
    transition: color 0.3s ease;
}
.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Custom classes for your specific content */
/* Markdown will render H3 for service items */
.post-content h3 {
    color: #004080; /* Medium blue for service headings */
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}
.post-content p {
    color: #555555;
}

/* Contact Info styling */
/* Markdown will render bold text for phone/email/service area */
.page-content strong {
    color: #001F3F; /* Navy for bold contact labels */
}
.page-content a {
    color: #0056B3; /* Strong blue for links */
    text-decoration: none;
}
.page-content a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments (Basic) */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .site-title { font-size: 2rem; }
    .main-navigation { text-align: center; } /* Center nav on small screens */
    .main-navigation ul { display: flex; flex-direction: column; align-items: center; }
    .main-navigation li { margin-bottom: 0.5rem; }
    .post-content, .page-content {
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
    }
}