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;
    font-family: 'Roboto', sans-serif;
}

/* Navbar styling */
.navbar {
    background-color: #19204E;
    padding-left: 90px !important;
    padding-right: 90px !important;
    box-shadow: 0px 4px 9px rgba(0,0,0,0.4);
}

/* Headers and text styling */
.h1-light {
    font-size: clamp(24px, 6vw, 40px);
    font-weight: 500;
    color: white;
}

.h1-dark {
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 500;
    color: black;
}

.h2-dark {
    font-size: clamp(22px, 5.5vw, 34px);
    font-weight: 500;
    color: black;
}

.h3-light {
    font-size: clamp(18px, 4.5vw, 28px);
    font-weight: 400;
    color: white;
}

.h3-dark {
    font-size: clamp(20px, 5vw, 36px);
    font-weight: 400;
    color: black;
}

/* Buttons styling */
.btn-primary {
    background-color: #19204E;
    border-color: white;
    color: white;
}

    .btn-primary:hover {
        background: #15D6EA;
        color: #19204E !important;
        border-color: #15D6EA;
    }

.btn-secondary {
    background: none;
    border-color: white;
    color: white;
}

    .btn-secondary:hover {
        background: #15D6EA;
        color: #19204E !important;
        border-color: #15D6EA;
    }

/* Containers & other styling */
.hero-container {
    min-height: 100vh;
    width: 100%;
    max-width: 1000px;
    margin-left: 0; /* stays left */
    margin-right: auto; /* prevents centering */
    display: flex;
    align-items: center;
    padding: 90px;
}


.hero-bg {
    background-image: url('/icons/hero-container/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 820px;
    height: 820px;
}

.supportive-container {
    background: white;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 60px;
    padding-top: 60px;
    width: 100%;
    text-align: center;
}

.supportive-detail-container {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    align-content: center;
    background: #19204E;
    min-height: 400px;
    width:100%;
    max-width: 312px;
    border-radius: 18px;
}

.supportive-detail-container img{
    width: 100px;
    height: 100px;
    margin-right:auto;
    margin-left:auto;
}

/* Banners */
.primary-banner {
    width: 100%;
    height: auto;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 130px;
    padding-top: 130px;
    background: #19204E;
}

.secondary-banner {
    width: 100%;
    height: auto;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 130px;
    padding-top: 130px;
    background: #173D5C;
}

.contact-banner {
    background: white;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 90px;
    padding-top: 90px;
    height: auto;
    justify-content: center;
    margin-left:auto;
    margin-right:auto;
}

.hide {
    display: none;
}

.show {
    display: block;
}

/* Privacy Banner - Sticky Bottom */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--auctionbolt-blue);
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(30, 144, 255, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-banner.hidden {
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-text {
    flex: 1;
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.5;
}

    .banner-text a {
        color: var(--auctionbolt-light-blue);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .banner-text a:hover {
            color: #ffffff;
        }

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-banner {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 0.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-learn-more {
    background: transparent;
    color: var(--auctionbolt-light-blue);
    border: 2px solid var(--auctionbolt-light-blue);
}

    .btn-learn-more:hover {
        background: var(--auctionbolt-light-blue);
        color: var(--auctionbolt-dark);
    }

.btn-accept {
    background: var(--auctionbolt-blue);
    color: white;
}

    .btn-accept:hover {
        background: var(--auctionbolt-light-blue);
        color: var(--auctionbolt-dark);
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    }

.btn-navigation {
    color: white !important;
    background-color: transparent;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-navigation:hover {
        background-color: rgba(173, 216, 230, 0.3);
        color: white !important;
        text-decoration: none;
    }

    .btn-navigation:focus {
        color: white !important;
        box-shadow: none;
    }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* grey-out */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hidden {
    display: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #0078d4; /* Azure blue */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-banner {
        width: 100%;
        text-align: center;
    }

    .privacy-banner {
        padding: 1rem;
    }

    .banner-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


