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%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.container, .container-fluid {
    max-width: 95% !important;
}

h1 {
   font-family: 'Oswald', sans-serif
}

.featuredimg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.db-button {
    display: block;
    width: 100%;
    height: 45px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #ffc55e;
    color: black;
    text-decoration: none;
    border: none;
}

    .db-button:hover {
        background-color: #343434;
        color: #ffffff;
    }

.main-navbar
{
    background: linear-gradient(135deg, #325650 0%, #2a4a43 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.has-navbar     .navbar-container
{
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand-custom
{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

    .navbar-brand-custom:hover
    {
        color: #ffc55e;
    }

.navbar-brand-icon
{
    width: 40px;
    height: 40px;
    background: #ffc55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #343434;
}

.navbar-menu
{
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-custom
{
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-link-custom:hover
    {
        background: rgba(255, 197, 94, 0.15);
        color: #ffc55e;
    }

    .nav-link-custom.active
    {
        background: #ffc55e;
        color: #343434;
    }

    .nav-link-custom i
    {
        font-size: 1.2rem;
    }

.navbar-toggler-custom
{
    display: none;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
}

    .navbar-toggler-custom:hover
    {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffc55e;
        color: #ffc55e;
    }

@media (max-width: 768px)
{
    .navbar-container
    {
        flex-wrap: wrap;
        height: auto;
        padding: 1rem 1.5rem;
    }

    .navbar-toggler-custom
    {
        display: block;
    }

    .navbar-menu
    {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0.5rem;
    }

        .navbar-menu.active
        {
            display: flex;
        }

    .nav-link-custom
    {
        width: 100%;
        justify-content: center;
    }
}



.main-footer
{
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 3px solid #ffc55e;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
}

.footer-container
{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact
{
    text-align: center;
}

    .footer-contact h4
    {
        color: #343434;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .footer-contact a
    {
        color: #325650;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: color 0.2s ease;
    }

        .footer-contact a:hover
        {
            color: #ffc55e;
            text-decoration: underline;
        }

.footer-description
{
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

    .footer-description p
    {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .footer-description a
    {
        color: #325650;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-description a:hover
        {
            color: #ffc55e;
            text-decoration: underline;
        }

.footer-logos
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    margin-top: 1.5rem;
}

.footer-logo-item
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .footer-logo-item:hover
    {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .footer-logo-item img
    {
        max-height: 60px;
        max-width: 180px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.footer-copyright
{
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    color: #adb5bd;
    font-size: 0.875rem;
}

@media (max-width: 768px)
{
    .main-footer
    {
        padding: 2rem 0 1.5rem;
    }

    .footer-content
    {
        gap: 1.5rem;
    }

    .footer-description p
    {
        font-size: 0.9rem;
    }

    .footer-logos
    {
        gap: 1.5rem;
    }

    .footer-logo-item img
    {
        max-height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 576px)
{
    .footer-logos
    {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo-item
    {
        width: 100%;
        max-width: 250px;
    }
}