/* This is the existing code from your default site.css */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Add all of your custom styling here.
 * This ensures your rules come after the default ones, so they will override them.
 */
@font-face {
    font-family: 'Sackers Square Gothic';
    src: url('/fonts/SackersSquareGothic-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Sackers Square Gothic', sans-serif;
    margin: 0;
    padding: 0;
}

/* This rule ensures all links are white by default */
a {
    color: #fff;
    text-decoration: none;
}

/* Header/Navigation Bar Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 20px;
}

    .nav-links a {
        font-size: 1rem;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .nav-links a:hover {
            background-color: #fff;
            color: #000;
        }

/* Footer Styling */
.footer {
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

    .footer a:hover {
        text-decoration: underline;
    }


/* Ensure all links within the navigation are white, and define their states */
.nav-links a,
.nav-links a:link,
.nav-links a:visited{
    color: #fff;
    text-decoration: none;
}

/* Ensure the footer links are also white and define their states */
.footer a,
.footer a:link,
.footer a:visited
{
    color: #fff;
}

.nav-links a:hover {
    color: #000;
}
.footer a:hover {
    color: #000;
}

.social-media-buttons-container {
    display: flex;
    justify-content: flex-start; /* Aligns buttons to the left */
    align-items: center;
    gap: 15px; /* Space between buttons */
    padding: 20px;
    margin-top: 40px; /* Adds space above the buttons */
    margin-bottom: 20px; /* Adds space between buttons and footer */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: 60px; /* Adjust height as needed to fit content */
}

.social-media-buttons {
    display: flex;
    gap: 15px; /* Space between the buttons */
    align-items: center;
}

.social-button {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

    .social-button svg {
        width: 20px;
        height: 20px;
    }

    .social-button:hover {
        transform: scale(1.1);
    }

.copyright {
    color: #888;
    font-size: 0.9rem;
}