@charset "utf-8";

/* --------------------------------------------------
   BASIC RESET
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fafafa;
    padding: 20px;
}

/* ============================================================
   FOCC HEADER — responsive header with floating Spikey logo
   ============================================================ */

.focc-header {
    background: url('/pages/images/header-bg.jpg') center/cover no-repeat;
    padding: 20px 0;
}

.focc-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 20px;
}

.focc-logo {
    width: 140px;      /* desktop size */
    height: auto;
    flex-shrink: 0;
	max-width: none;   /* override global img rule */
}

.focc-header-text h1 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
}

.focc-header-text p {
    margin: 4px 0 0;
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* ============================================================
   TABLET (iPad)
   ============================================================ */
@media (max-width: 900px) {
    .focc-logo {
        width: 110px;
        height: auto;
        max-width: none;   /* override global img rule */
    }

    .focc-header-text h1 {
        font-size: 1.7rem;
    }

    .focc-header-text p {
        font-size: 1rem;
    }
}


/* ============================================================
   MOBILE (iPhone)
   ============================================================ */
@media (max-width: 700px) {

    .focc-header-inner {
        flex-direction: row;      /* keep items side‑by‑side */
        justify-content: flex-start;
        align-items: center;
        text-align: left;         /* text aligns left */
        gap: 12px;                /* tighter spacing for mobile */
    }

    .focc-logo {
        width: 70px;              /* smaller for iPhone */
        height: auto;
        max-width: none;
    }

    .focc-header-text h1 {
        font-size: 1.2rem;
        margin: 0;
    }

    .focc-header-text p {
        font-size: 0.85rem;
        margin: 2px 0 0;
    }
}

/* --------------------------------------------------
   GLOBAL ELEMENTS
-------------------------------------------------- */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

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

/* --------------------------------------------------
   BIRDS NAV OVERRIDE — ALIGN WITH CONTENT COLUMN
-------------------------------------------------- */
.birds-nav {
    width: 100%;
    background: #2d4d2d; /* keep your existing colour */
}

.birds-nav ul {
    max-width: 1100px;      /* aligns with main content */
    margin: 0 auto;         /* centers the content block */
    padding: 0 20px;        /* same side padding as content */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* LEFT aligned */
    gap: 20px;
    box-sizing: border-box;
}

/* Prevent global nav styles from leaking into Birds nav */
.birds-nav ul li {
    background: none !important;
    padding: 0 !important;
	
}

/* --------------------------------------------------
   BIRDS NAV — ALIGN WITH CONTENT COLUMN
-------------------------------------------------- */
.birds-nav {
    width: 100%;
    background: #2d4d2d;
    text-align: left !important;   /* kill any global centering */
}

.birds-nav ul {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;  /* force left */
    gap: 20px;
    box-sizing: border-box;
}


/* --------------------------------------------------
   GENERIC GLOBAL COMPONENTS
-------------------------------------------------- */
hr {
    margin: 2em 0;
    border: 0;
    border-top: 1px solid #ddd;
}

figure {
    margin: 1.5em auto;
    text-align: center;
}

figure img {
    display: block;
    margin: 0 auto;
}

figure figcaption {
    font-size: 0.9em;
    color: #555;
    margin-top: 6px;
    line-height: 1.4;
}

/* --------------------------------------------------
   GLOBAL VIDEO WRAPPER
-------------------------------------------------- */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2em 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* --------------------------------------------------
   GLOBAL FOOTER ALIGNMENT (no HTML changes)
-------------------------------------------------- */
footer {
    width: 100%;
    background: #2f3638; /* or your existing footer colour */
    padding: 20px 0;
    clear: both; /* stops floats from collapsing it */
}

footer p {
    max-width: 1100px;      /* aligns with main content */
    margin: 0 auto;         /* centers the content block */
    padding: 0 20px;        /* same side padding as content */
    text-align: left;       /* aligns text with content column */
    color: #fff;            /* optional: match your footer style */
    box-sizing: border-box;
}
