﻿/* =========================================================
FONTS
========================================================= */

@font-face {
    font-family: "Above the Beyond Script";
    src: url("/FONTS/Above-the-Beyond-Font/Above the Beyond Script.woff2") format("woff2"),
         url("/FONTS/Above-the-Beyond-Font/Above the Beyond Script.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
DESIGN TOKENS
========================================================= */

:root {
    --bg: #FAFAFA; /* Page background #0d0d0d */
    --primary: #00a8bf; /* Primary color — neon green #6dff2e 00a8bf */
    --primary-dark: #0077B6; /* Primary hover/darker shade #52cc1f */
    --accent: #D4AF37; /* Accent color — electric cyan #00e5ff */
    --text: #2B2B2B; /* Body text #e8e8e8 */
    --card: #FFFFFF; /* Card background #1a1a1a */
    --surface-alt: #EAF7F9; /* Alternative surface / hero placeholder #141414 */
    --muted: #737373; /* Muted text #666666 */
    --border: #E5E5E5; /* Subtle borders #2a2a2a */
    --white: #ffffff; /* Pure white — for text/icons on colored or image backgrounds #ffffff */

    --font-head: "Inter", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --maxw: 1200px;
    --readw: 720px;
    --radius: 10px;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

/* =========================================================
RESET & BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--text);
}

    h1:focus {
        outline: none;
    }

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =========================================================
REUSABLE BUTTON
========================================================= */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    background-color: var(--primary);
    color: #0d0d0d;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
