
/* ===============================
   General Layout & Typography
=================================*/

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   Header / Navigation
=================================*/

.nav-brand {
    font-family: 'Pacifico', serif;
    font-size: 2rem;
    font-weight: 700;
}

/* ===============================
   Hero Section
=================================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* ===============================
   Utility Classes (minimal)
=================================*/

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-outline:hover {
    background: #eff6ff;
}

