/* GLOBAL RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('/assets/images/bg-lighter.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* MAIN WRAPPER */
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    white-space: normal;
    border: 1px solid #000;
    background: #fff;
}

/* HEADER */
.site-header {
    background: #003366;
    color: #fff;
    padding: 20px 20px;
}

.site-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* HEADER ROW: logo left, Bob image right */
.header-row {
    width: 100%;
    white-space: nowrap;
}

/* LOGO AREA */
.logo-area {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
}

.logo {
    max-width: 180px; /* FIX: prevents logo from blowing up */
    height: auto;
}

.tagline {
    font-size: 14px;
    margin-top: 5px;
}

/* BOB IMAGE AREA */
.bob-image {
    display: inline-block;
    vertical-align: top;
    width: 80%;
    text-align: left !important;
}

.bob-image img {
    max-width: 100%;
    height: auto;
}

/* NAVIGATION */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.main-nav {
    margin-top: 15px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* CONTENT + SIDEBAR LAYOUT */
.content-area {
    display: inline-block;
    width: 70%;
    vertical-align: top;
    padding: 15px;
    border: 1px solid #000;
}

.right-side {
    display: inline-block;
    width: 27%; /* FIXED: stable width that prevents wrapping */
    vertical-align: top;
    padding: 15px;
    background: #f5f5f5;
    margin-left: 2%;
    border: 1px solid #000;
}

/* FOOTER */
.site-footer {
    background: #003366;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.site-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* RESPONSIVE BREAKPOINT */
@media (max-width: 900px) {
.site-footer {
    font-size: .8em;
}    
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
        color: #fff;
    }

    .main-nav {
        display: none;
        background: #003366;
        padding: 10px 0;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul li {
        display: block;
        margin: 10px 0;
        text-align: left;
        padding-left: 15px;
    }

    .content-area,
    .right-side {
        width: 100%;
        display: block;
        margin: 0;
    }

    /* MOBILE HEADER STACK */
    .header-row {
        display: block;
        white-space: normal;
        text-align: center;
    }

    .logo-area,
    .bob-image {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo {
        max-width: 200px; /* keeps logo readable on mobile */
    }
}

#header-rotator {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out; /* smooth fade */
}
.content-top-img {
    width: 100%;        /* fills the content area width */
    height: auto;       /* keeps correct proportions */
    display: block;     /* removes inline spacing */
    margin: 0 0 15px 0; /* spacing below the image */
    border-radius: 6px; /* optional, looks nice */
}
.content-img {
    width: 80%;        /* fills the content area width */
    height: auto;       /* keeps correct proportions */
    display: block;     /* removes inline spacing */
    margin: 0 0 15px 0; /* spacing below the image */
    border-radius: 6px; /* optional, looks nice */
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;   /* LIMITS VIDEO SIZE */
    padding-bottom: 56.25%; /* 16:9 ratio */
    margin: 20px auto;  /* centers the video */
    border: 1px solid #000;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 20px 0 0 0;
}
@media (max-width: 400px) {
    .fp-bottom-boxes {
        width: 100% !important;
        display: block !important;
        margin-bottom: 15px;
    }
}
.red-btn {
    display: inline-block;
    background: #cc0000;        /* red button */
    color: #fff;
    padding: 12px 20px;
    font-size: .9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;        /* rounded corners */
    border: 2px solid #990000;  /* darker red border */
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    transition: background 0.3s ease, transform 0.2s ease;
    width:250px;
}

.red-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
}

.red-btn:active {
    background: #b30000;
    transform: translateY(0);
}
