@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Lightltalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Mediumltalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-SemiBoldltalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Boldltalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-ExtraBoldltalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce One';
    src: url('../fonts/OpenSauceOne-Blackltalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --Navy: #062043;
    --Cyan: #01D9F3;
    --Yellow: #FBE639;
    --Grey: #475467;
    --LightGrey: #F6F6F6;
    --White: #FFF;
    --Black: #000;
}

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

body {
    font-family: 'Open Sauce One', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

header {
    background-color: var(--LightGrey);
    color: var(--Navy);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--Navy);
}

.logo a {
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.auth-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-nav a {
    color: var(--Navy);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s;
}

.auth-nav a:hover {
    background: rgba(6, 32, 67, 0.1);
}

.auth-nav a.btn-primary {
    background: var(--Navy);
    color: white;
}

.auth-nav a.btn-primary:hover {
    background: #0a3058;
    transform: translateY(-2px);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    color: var(--Navy);
    font-weight: 600;
}

.btn-logout {
    background: var(--Navy);
    color: white;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: #0a3058;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--Navy);
    cursor: pointer;
    padding: 0.5rem;
    margin: 0;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.container-full {
    width: 100%;
    padding: 2rem;
}

.section-header {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--Navy);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

footer {
    background-color: var(--Navy);
    color: var(--White);
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 3rem 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column:last-child {
    align-items: flex-end;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--White);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: var(--White);
}

.footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--White);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal-links a {
    color: var(--White);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-legal-links a:hover {
    color: var(--Cyan);
}

.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--White);
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: var(--White);
}

.footer-contact p:last-of-type {
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: var(--White);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--Cyan);
}

.footer-contact .footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo-social img {
    height: 40px;
    width: auto;
}

.footer-social-icons a {
    display: block;
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
}

.footer-social-icons img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.footer-stripe {
    width: 100%;
    max-height: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    line-height: 0;
    display: block;
    overflow: hidden;
}

.footer-stripe-svg {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    vertical-align: top;
    object-fit: cover;
    object-position: center;
}

.footer-bottom-wrapper {
    background: var(--LightGrey);
    width: 100%;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--Navy);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--Cyan);
}

.footer-bottom-links span {
    color: var(--Navy);
}

.footer-bottom-copyright p {
    margin: 0;
    color: var(--Navy);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }

    .logo-img {
        height: 35px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .auth-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 8px 8px;
        padding: 1rem;
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        min-width: 200px;
        z-index: 1000;
    }

    .auth-nav.mobile-open {
        display: flex;
    }

    .auth-nav a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        text-align: center;
        width: 100%;
    }

    .user-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 8px 8px;
        padding: 1rem;
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        min-width: 200px;
        z-index: 1000;
    }

    .user-menu.mobile-open {
        display: flex;
    }

    .user-info {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .btn-logout {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 1.5rem;
    }

    .container-full {
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    footer {
        padding: 2rem 0 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0 2rem 0;
    }

    .footer-column:last-child {
        align-items: flex-start;
    }

    .footer-logo-social {
        align-items: flex-start;
    }

    .footer-stripe {
        max-height: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }

    .footer-brand h2 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-contact h3 {
        font-size: 1rem;
    }

    .footer-logo-social img:first-child {
        height: 36px;
    }

    .footer-social-icons a {
        width: 24px;
        height: 24px;
    }

    .footer-stripe {
        max-height: 30px;
        height: 30px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}
