﻿/* ------------------------------
   GLOBAL RESET + BASE STYLES
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    background: #020814; /* near-black blue */
    color: #f5f5f5;
}

/* ------------------------------
   COLOR PALETTE
   Deep Blue: #06152e
   Midnight:  #020814
   Gold:      #d4af37
   Soft Gold: #f4e3a3
--------------------------------*/
:root {
    --deep-blue: #06152e;
    --midnight: #020814;
    --gold: #d4af37;
    --gold-soft: #f4e3a3;
    --text-light: #f5f5f5;
    --text-muted: #c0c4cf;
}

/* ------------------------------
   LAYOUT
--------------------------------*/
header, nav, main, footer {
    padding: 1rem;
}

header {
    background: radial-gradient(circle at top, #0f2b57 0%, var(--deep-blue) 40%, var(--midnight) 100%);
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.brand-header {
    max-width: 1000px;
    margin: 0 auto;
}

.site-title {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.site-tagline {
    font-size: 0.9rem;
    color: var(--gold-soft);
    margin-top: 0.25rem;
}

/* NAV */
nav {
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--gold-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

nav a:hover,
nav a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* MAIN */
main {
    padding: 2rem 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #050f22 0%, #020814 60%, #050f22 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

main h2 {
    color: var(--gold-soft);
    margin-bottom: 0.75rem;
}

main p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* FOOTER */
footer {
    background: #020814;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
}

/* ------------------------------
   BUTTONS / CTA
--------------------------------*/
.btn {
    display: inline-block;
    background: var(--gold);
    color: #1a1305;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn:focus {
    background: #b8922f;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
}

/* -----------------------------------------
   CONTACT FORM — Symmetrical Layout
-----------------------------------------*/

form {
    display: grid;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Make all inputs the same width */
form input,
form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #050b18;
    color: var(--text-light);
    font-size: 1rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4) inset;
}

/* Fix textarea height without breaking symmetry */
form textarea {
    min-height: 150px;
    resize: vertical; /* optional: allow resizing */
}

/* Label alignment */
form label {
    font-size: 0.95rem;
    color: var(--gold-soft);
    display: block;
    margin-bottom: 0.35rem;
}

/* Focus state — gold glow */
form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow:
        0 0 8px rgba(212, 175, 55, 0.4),
        0 0 0 2px rgba(212, 175, 55, 0.2);
}


/* ------------------------------
   UTILITIES
--------------------------------*/
section {
    margin-bottom: 2rem;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (min-width: 768px) {
    header {
        padding: 1.5rem 2rem 1.75rem;
    }

    .brand-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }
}
/* -----------------------------------------
   HERO SECTION — Deep Blue + Gold Glow
-----------------------------------------*/
.hero {
    width: 100%;
    padding: 4rem 1.5rem;
    margin: 0 auto 2.5rem;
    text-align: center;

    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(6, 21, 46, 0.9) 40%,
        #020814 100%
    );

    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Subtle star-field effect */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff22'/%3E%3C/svg%3E");
    background-size: 3px 3px;
    opacity: 0.25;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero h2 {
    font-size: 2rem;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0.5rem auto 2rem;
    line-height: 1.7;
}

.hero-btn {
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
}

/* Larger screens */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem;
    }

    .hero h2 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}
/* -----------------------------------------
   GOLD-LINED CARD LAYOUT (ABOUT PAGE)
-----------------------------------------*/

.cards {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: linear-gradient(145deg, #06152e 0%, #020814 100%);
    padding: 2rem 1.5rem;
    border-radius: 14px;

    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 18px rgba(212, 175, 55, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.6);

    position: relative;
    overflow: hidden;
}

/* Soft inner gold glow */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top center,
        rgba(212, 175, 55, 0.18),
        transparent 70%
    );
    pointer-events: none;
}
/* -----------------------------------------
   FOUNDER'S CARD — Deep Blue + Gold
-----------------------------------------*/

.founder-card {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, #06152e 0%, #020814 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 22px rgba(212, 175, 55, 0.18),
        0 18px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Gold halo behind the card */
.founder-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(212, 175, 55, 0.22),
        transparent 70%
    );
    pointer-events: none;
}

/* PHOTO */
.founder-photo-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    /* no padding, no background, no overflow */
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;

    /* gold glow directly on the photo */
    box-shadow:
        0 0 18px rgba(212, 175, 55, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.6);
}

/* TEXT */
.founder-info {
    text-align: center;
}

.founder-name {
    color: var(--gold-soft);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Desktop layout */
@media (min-width: 900px) {
    .founder-card {
        grid-template-columns: 200px 1fr;
        padding: 3rem 2.5rem;
        text-align: left;
    }

    .founder-info {
        text-align: left;
    }
}

.card h2 {
    color: var(--gold-soft);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Larger screens: 3-column layout */
@media (min-width: 900px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* -----------------------------------------
   MOBILE NAV — Hamburger Menu
-----------------------------------------*/

/* Hide nav on mobile */
nav ul {
    display: none;
    flex-direction: column;
    background: #020814;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

/* Show nav when active */
nav.active ul {
    display: flex;
}

/* Hamburger button */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 999;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 6px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

/* Animate into X when active */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop: show nav normally, hide hamburger */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    nav ul {
        display: flex !important;
        flex-direction: row;
        background: none;
        padding: 0;
        border: none;
        margin-top: 0;
    }
}
