/* === Base HTML Settings === */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* === Form & Focus States === */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.5);
    border-color: #FF9800;
}

/* === Header === */
header {
    background-color: #000;
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 2px solid #FF9800;
}

    header h1 {
        color: #FF9800;
        font-size: 3rem;
        margin: 0;
    }

    header h2 {
        color: #FF9800;
        font-size: 2rem;
        margin: 0.3rem 0 0;
        font-weight: normal;
    }

.tagline {
    font-size: 1rem;
    font-style: italic;
    font-weight: normal;
}

/* === Sticky Navigation === */
nav.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #000 !important;
    border-top: 1px solid #FF9800;
    border-bottom: 1px solid #FF9800;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: center;
}

    nav a,
    .nav-link {
        color: #FF9800 !important;
        text-decoration: none !important;
        margin: 0 1rem;
        font-weight: 600;
        transition: color 0.2s ease-in-out;
    }

        nav a:hover,
        .nav-link:hover {
            color: #ffa733 !important;
        }

/* === Sections === */
section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

    section h3 {
        font-size: 2rem;
        color: #FF9800;
        margin-bottom: 1rem;
    }

    section p {
        font-size: 1.1rem;
        color: #ddd;
    }

/* === Carousel === */
.carousel-inner img {
    max-height: 600px;
    max-width: 600px;
    /*object-fit: cover;*/
    width: 100%;
    border-radius: 10px;
}

.carousel-img-fit {
    height: 600px; /* adjust as needed */
    object-fit: contain; /* fits the whole image inside without cropping */
    width: 100%; /* keep full width */
}


/* === No Images Text === */
.no-images {
    font-size: 0.9rem;
    font-style: italic;
    color: #aaaaaa;
    text-align: center;
    margin-top: 20px;
}

/* === Orange Theme Utility Classes === */
.text-orange {
    color: #FF9800 !important;
}

.border-orange {
    border-color: #FF9800 !important;
}

/* === Buttons === */
.btn-orange {
    background-color: #FF9800;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-orange:hover {
        background-color: #e68900;
        color: #000;
    }

/* === Forms === */
.form-label {
    font-weight: bold;
    color: #000;
    margin-bottom: 0.3rem;
}
