/* /Components/Inline/InlineVideo.razor.rz.scp.css */
/* Video frame styles */
.video-frame-container[b-5b956hd9py] {
    position: relative;
    display: inline-block;
}

.video-frame[b-5b956hd9py] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    object-fit: cover;
}

.video-frame-container video[b-5b956hd9py] {
    position: relative;
    z-index: 1;
}

/* /Components/SiteTemplate.razor.rz.scp.css */

.navbar[b-jwxhhx4g1i] {
    background: linear-gradient(to right, #372e28, #8a5c3a, #372e28);/* Triple brown-orange gradient */
    padding: 1rem;
}

.navbar .container-fluid[b-jwxhhx4g1i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand img[b-jwxhhx4g1i] {
    height: 50px; /* Increased logo size */
}

.navbar-toggler[b-jwxhhx4g1i] {
    border: none;
    background-color: white;
}

.navbar-toggler:focus[b-jwxhhx4g1i] {
    box-shadow: none;
}

#navbarNav[b-jwxhhx4g1i] {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav[b-jwxhhx4g1i] {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
}

.nav-link[b-jwxhhx4g1i] {
    flex: 1;                /* equal width */
    text-align: center;     /* center text inside */
    display: block;         /* fill full width */
    width: 100%;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 15px;         /* remove side padding */
    border-radius: 5px;
    transition: all 0.3s ease;

    display: flex;              /* key */
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
}

.nav-link:hover[b-jwxhhx4g1i] {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active[b-jwxhhx4g1i] {
    font-weight: 700; /* Bold for active */
    color: #fff !important; /* Ensure text stays white */
    background-color: rgba(255, 255, 255, 0.15); /* Subtle background for active link */
    border-radius: 5px; /* Rounded corners */
    border-bottom: none; /* No underline for active link */
}

.navbar-spacer[b-jwxhhx4g1i] {
    width: 50px; /* Compensator for logo, adjust to match logo width */
    flex-shrink: 0;
}

/*footer*/
.footer-bg-container[b-jwxhhx4g1i] {
    background-image: url('/images/footer.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.footer-bg-container[b-jwxhhx4g1i]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.7);
    z-index: 1;
}

.footer-bg-container .container[b-jwxhhx4g1i] {
    position: relative;
    z-index: 2;
}

.social-icons .social-icon[b-jwxhhx4g1i] {
    color: #fff;
    font-size: 2rem;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons .social-icon:hover[b-jwxhhx4g1i] {
    color: #00c6ff;
    transform: translateY(-5px);
}

.footer-separator[b-jwxhhx4g1i] {
    width: 40%;
    margin: 1.5rem auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-text[b-jwxhhx4g1i] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}


/*
       * Custom orange Button (Bootstrap Style)
       * With "frosted glass" backdrop filter effect
       * Usage: <button class="btn btn-custom-turquoise">Text</button>
      */
      
      .btn-custom-orange[b-jwxhhx4g1i] {
        /* --- Base Styles --- */
        /* Colors */
       color: #fff; /* White text */
       background-color: rgba(255, 111, 0, 0.775); /* Lightly transparent turquoise background (LightSeaGreen) */
       border-color: #ff5e00; /* Bright turquoise border (MediumTurquoise) */
     
       /* Backdrop filter effect */
       
 
       /*
       * --- Sizing and Spacing ---
       * Overrides Bootstrap's default padding to create more space.
       * The first value is for top/bottom, the second is for left/right.
       */
       padding: 1rem 1.4rem;
     
       /* Border and Shape */
       border-width: 3px;
       border-style: solid;
       border-radius: 0.375rem;
     
       /* Shadow */
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
     
       /* Smooth transition for animations */
       transition: all 0.2s ease-in-out;
     }
     
     /* --- Button States --- */
     
     /* On hover or focus */
     .btn-custom-orange:hover[b-jwxhhx4g1i],
     .btn-custom-orange:focus[b-jwxhhx4g1i] {
       color: #fff;
       background-color: rgb(255, 111, 0); /* Background becomes more saturated (DarkTurquoise) */
       border-color: #ff5100; /* Border becomes darker and brighter (LightSeaGreen) */
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
       transform: translateY(-2px);
     }
     
     /* On active (click) */
     .btn-custom-orange:active[b-jwxhhx4g1i] {
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
       transform: translateY(0);
     }
