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%;
}

.big-text {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 1em;
}

body {
    margin-bottom: 60px;
}

body {
    /* background-image: url('/images/IslandsOnSeaWithBridges.png'); */
    background-size: cover; /* Scale to cover whole page */
    background-repeat: no-repeat; /* No tiling */
    background-attachment: fixed; /* Stays fixed while scrolling */
}


.container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px;
}

.content-column {
    flex: 1;
    max-width: 70%;
}

.links-column {
    flex: 0 0 400px !important; /* fixed width for navigation */
    margin-left: auto; /* pushes to the right */
    padding-left: 150px; /* adds extra space from the left content */
    opacity: 0.5; /* 50% transparent, adjust 0.0-1.0 */
}

.links-column a {
    color: deeppink;
    text-decoration: none; /* removes underline */
}

.links-column a:hover {
    color: navy; /* gold color on hover */
    text-decoration: underline; /* adds underline on hover */
}

.links-column a:visited {
    color: goldenrod; /* lighter yellow for visited links */
}

/* Optional: make it responsive */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
    }

    .content-column {
        max-width: 100%;
    }

    .links-column {
        margin-left: 0;
    }
}

.side-navigation {
    position: sticky;
    top: 2rem;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

    .side-navigation h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .side-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side-navigation li {
        margin-bottom: 0.75rem;
    }

    .side-navigation a {
        text-decoration: none;
        color: #0066cc;
        font-size: 1rem;
        transition: color 0.2s;
    }

        .side-navigation a:hover {
            color: #004499;
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .side-navigation {
        position: static;
    }
}

footer {
    display: none;
}


