﻿/* ======================================================
BASE STYLES (GLOBAL)
====================================================== */

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    line-height: 1.3;
}

h2 {
    margin-top: 40px;
}

ul {
    padding-left: 20px;
}


/* ======================================================
HERO SECTION
====================================================== */

.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/Background-Blue.jpg') center/cover no-repeat;
    padding: 80px 20px;
    padding-top: 100px;
    text-align: center;
    color: white;
    min-height: 300px;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: white;
    }

    .hero p {
        max-width: 600px;
        margin: 0 auto 20px;
        font-size: 1.2rem;
        color: #e5e7eb;
    }


/* ======================================================
SECTIONS & CONTENT
====================================================== */

.section {
    margin-top: 50px;
}

.highlight {
    background: #f9fafb;
    border-left: 5px solid #2563eb;
}


/* ======================================================
CTA
====================================================== */

.cta-block {
    background: #1b2a41;
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

/*.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}*/

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

    .cta-button:hover {
        background: #f59e0b;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(251, 191, 36, 0.25);
    }

    .cta-button:active {
        transform: translateY(0);
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }


/* ======================================================
APP BAR (SHARED ACROSS ALL PAGES)
====================================================== */
.custom-appbar {
    background-color: #1b2a41;
    color: #d4b483;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    .custom-appbar a:hover {
        text-decoration: underline;
    }

    .custom-appbar nav {
        display: flex;
        gap: 20px;
    }


/* ======================================================
BRAND (LOGO + TEXT)
====================================================== */

.app-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4b483;
    text-decoration: none;
}

    .app-brand:hover {
        opacity: 0.9;
    }

.app-logo {
    height: 28px;
    width: 28px;
    transform: translateY(-1.5px);
}

.app-title {
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
}


/* ======================================================
RESPONSIVE
====================================================== */

@media (max-width: 700px) {
    .app-title {
        display: none;
    }
}
