﻿:root {
    --bg: #F5F7F7;
    --text: #1F1F1F;
    --accent: #0A4B3E;
    --accent-alt: #8B1E3F;
    --card-bg: #ffffff;
    --border-light: #D8DDDD;
}

body {
    background: var(--bg);
    color: var(--text);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers the container horizontally */
}

/* HEADER */
header {
    background: var(--accent);
    width: 100%;
    padding: 14px 22px 2px 22px;
    color: white;
    text-align: center;
}

footer {
    background: var(--accent);
    width: 100%;
    padding: 14px 22px;
    color: white;
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 2px 0;
    font-size: 1.50rem;
    line-height: 1.15;
    padding: 0px 0px 5px 0px;
}
/* Unvisited link */
a.menu-link:link {
    color: #FFFFFF; /* white */
    text-decoration: none;
}

/* Visited link */
a.menu-link:visited {
    color: #FFFFFF; /* white */
    text-decoration: none;
}

/* Hover state */
a.menu-link:hover {
    color: #0A4B3E; /* dark green text */
    background-color: #FFFFFF; /* white background */
    text-decoration: none;
}

/* Active state (pressed/clicked) */
a.menu-link:active {
    font-weight: bold; /* bold when active */
    color: #FFFFFF;
    text-decoration: none;
}

/* Base menu link settings */
a.menu-link {
    padding: 6px 10px; /* spacing for nicer hover effect */
    display: inline-block; /* helps with padding + background */
    text-decoration: none;
}






/* Unvisited link */
a.inline-link:link {
    color: #0A4B3E; /* dark green */
    text-decoration: none;
    font-weight: bold;
    
}

/* Visited link */
a.inline-link:visited {
    color: #4FA892; /* lighter green */
    font-weight: nornal;
    text-decoration: none;
}

/* Hover */
a.inline-link:hover {
    background-color: #FFFF66; /* yellow highlight */
    text-decoration: none;
}

/* Active (optional) */
a.inline-link:active {
    color: #0A4B3E;
    text-decoration: none;
}

/* Ensure no underline in any state */
a.inline-link {
    text-decoration: none;
    padding: 2px 3px; /* optional: makes hover highlight look cleaner */
}



nav a {
    color: white;
    margin-right: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}

/* MAIN CONTAINER */
.container {
    max-width: 80ch; /* limit paragraph width */
    width: 100%; /* take full width up to max-width */
    padding: 0 16px; /* small side padding */
    box-sizing: border-box; /* include padding in width */
}

/* HEADINGS */
h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    text-align: left; /* flush-left with container */
    line-height: 1.15;
    margin-top: 1.1rem;
    margin-bottom: 0.2rem;
}

h2 {
    font-size: 1.05rem;
}

h3 {
    font-size: 0.9rem;
    margin-top: 0.6rem;
    margin-bottom: 0.15rem;
}

/* PARAGRAPHS */
p {
    text-align: justify; /* justified text */
    margin-top: 0.15rem;
    margin-bottom: 0.7rem;
}

/* ACCENT BOX */
.accent-box {
    border-left: 4px solid var(--accent-alt);
    padding-left: 12px;
    margin: 12px 0;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

/* CARDS */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 10px;
    border-radius: 8px;
    margin: 14px 0;
    text-align: left;
}

/* BUTTON */
.button {
    display: inline-block;
    background: var(--accent-alt);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 4px;
}


.img-left {
    float: left;
    margin: 10px;
}


.img-right {
    float: right;
    margin: 10px;
}

.img-valign {
    vertical-align: middle;
}

.center-img {
    text-align: center;
}

blockquote {
    font-style: italic; /* italic text */
    border-left: 3px solid #8B1E3F; /* accent color border */
    padding-left: 12px; /* space between border and text */
    margin: 1rem 0 1rem 0; /* spacing above and below */
    line-height: 1.45;
    text-align: justify; /* match paragraph alignment */
    max-width: 80ch; /* align with paragraph width */
    margin-left: auto;
    margin-right: auto; /* center the block */
    background: #FDFDFD; /* subtle background optional */
    border-radius: 4px; /* slight rounding */
}

q {
    font-style: italic; /* Makes the quote italic */
    quotes: "“" "”" "‘" "’"; /* Optional: define custom quotation marks */
}

    q::before {
        content: open-quote; /* Adds opening quote */
    }

    q::after {
        content: close-quote; /* Adds closing quote */
    }


