:root {
    /* Backgrounds */
    --bg: #f4f5f7;       /* soft white, not bright */
    --card: #ffffff;

    /* Header */
    --header-bg: #0f0f0f;

    /* Text */
    --text: #1c1c1c;
    --muted: #666666;

    /* Accent (very minimal) */
    --accent: #1f4ed8;   /* subtle blue for links if needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ===== HEADER / NAV ===== */
header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
}

nav a {
    color: #ffffff;
    margin-left: 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover {
    opacity: 0.75;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 24px 80px;
    text-align: center;
    background: var(--bg);
}

.hero img {
    max-width: 260px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.hero p {
    max-width: 640px;
    margin: auto;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ===== CONTENT ===== */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 80px 24px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    font-weight: 700;
}

/* ===== CARDS ===== */
.card {
    background: var(--card);
    padding: 32px;
    margin-bottom: 28px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ===== SOCIAL BUTTON ===== */
.social {
    display: inline-block;
    padding: 14px 28px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 2px;
}

.social:hover {
    opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
    background: #0f0f0f;
    color: #aaaaaa;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
}

.social.facebook {
    background-color: #1877f2; /* Official Facebook Blue */
    color: #ffffff;
}

.social.facebook:hover {
    background-color: #145dbf; /* Slightly darker on hover */
}
 
footer {
    background: #0f0f0f; /* black footer */
    color: #aaaaaa;
    padding: 40px 24px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

.footer-links,
.footer-socials {
    margin-bottom: 16px;
}

.footer-links a,
.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    opacity: 0.7;
}

/* Facebook button styling matches your other social buttons */
.footer-socials a.facebook {
    background-color: #1877f2;
    padding: 8px 18px;
    border-radius: 3px;
    font-weight: 600;
}
.footer-socials a.facebook:hover {
    background-color: #145dbf;
}
