html {
    background-color: rgb(27, 27, 27);
    scroll-behavior: smooth;
}

 /* Scroll progress bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #fbb831 0%, #f5a623 100%);
            width: 0%;
            z-index: 9999;
            transition: width 0.1s ease;
        }
html {
    background-color: rgb(27, 27, 27);
    scroll-behavior: smooth;
}

body {
    margin: 10;
    padding: 0;
    font-family: "Raleway", sans-serif;
}

h1 {
    color: rgb(79, 87, 104);
    font-size: 25pt;
    font-family: "Rozha One", serif;
}

h2, h3, h4 {
    font-family: "Raleway", sans-serif;
}


h3 {
    font-weight: 300;
    color: #fff;
}

a {
    text-decoration: none;
    font-weight: 300;
    font-size: 15pt;
    color: inherit;
}

a img:hover {
    transform: scale(1.1);
}

button {
    background-color: #fbb831;
    color: rgb(0, 0, 0);
    padding: 2px 10px;
    margin: 15px 10px;
    border-radius: 8px;
    font-size: 12pt;
}

footer {
    font-size: x-small;
    text-align: center;
    padding: 30px 10px;
    margin-top: 50px;
    width: 100%;
    color: rgb(79, 87, 104);
  
    border-top: 1px solid rgba(251, 184, 49, 0.2);
}

.copyright {
    color: white;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* === Navigation === */
    nav {
    padding: .5em;
    display: flex;
    justify-content: space-evenly;
    position: sticky;  /* already set */
    top: 0;
    background-color: rgb(27, 27, 27); /* Ensure it's not transparent */
    z-index: 1000;  /* Add this */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fbb831;
    min-width: 260px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 10px;
    z-index: 1100; /* Add this to be above nav */
}

nav {
        padding: .5em;
        display: flex;
        justify-content: space-evenly;
        position: sticky;
        top: 0;
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        padding: .2em .5em;
        margin: 0 20pt;
        text-align: left;
    }

    a {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        padding: 10px;
        font-size: 15pt;
        line-height: 1.5em;
    }

    nav ul li a:hover {
        color: #bfbfbf;
        border-bottom: 2px solid #fbb831;
    }

   
    li.dropdown {
        position: relative;
    }

    li.dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 12pt;
        color: rgb(0, 0, 0);
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        color: rgb(255, 255, 255);
        border-bottom: none;
    }

/* === Social Icons === */
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#instagram-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

#instagram-logo {
    width: 30px;
    height: auto;
    transition: transform 0.3s;
}

#instagram-button:hover #instagram-logo {
    transform: scale(1.1);
}

@media(min-width:1300px) {
    html {
        max-width: 1200px;
        height: 100%;
        width: 90%;
        margin: 0 auto;
    }

    .headerLogo img {
        width: 300px;
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    .sr-only {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

    nav {
        padding: .5em;
        display: flex;
        justify-content: space-evenly;
        position: sticky;
        top: 0;
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        padding: .2em .5em;
        margin: 0 20pt;
        text-align: left;
    }

    a {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        padding: 10px;
        font-size: 15pt;
        line-height: 1.5em;
    }

    nav ul li a:hover {
        color: #bfbfbf;
        border-bottom: 2px solid #fbb831;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fbb831;
        min-width: 260px;
        box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        padding: 5px;
        border-radius: 10px;
        
    }

    li.dropdown {
        position: relative;
    }

    li.dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 12pt;
        color: rgb(0, 0, 0);
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        color: rgb(255, 255, 255);
        border-bottom: none;
    }

   /* === Social Icons === */
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#instagram-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

#instagram-logo {
    width: 30px;
    height: auto;
    transition: transform 0.3s;
}

#instagram-button:hover #instagram-logo {
    transform: scale(1.1);
}

    footer {
        font-size: x-small;
        text-align: center;
        color: rgb(255, 255, 255);
        padding: 10px;
        margin-top: auto;
        width: 100%;
    }

    h1 {
        font-family: "Rozha One", serif;
        font-weight: 400;
        font-style: normal;
    }

    h2 {
        text-align: center;
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
    }

    p {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
    }

    button {
        padding: 8px 8px 8px 8px;
        border-radius: 8px;
    }

     h2 {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 14pt;
        line-height: 1.5em;
        background-color: rgb(79, 87, 104);
        color: white;
        padding: 15px 15px 15px 30px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .centerImg button {
        background-color: #fbb831;
        color: rgb(0, 0, 0);
        padding: 2px 10px 2px 10px;
        margin: 15px 10px 15px 10px;
        border-radius: 8px;
        font-size: 12pt;
   
        display: block;
        margin: auto;
        width: 8%;
        height: auto;
        padding: 10px;
    }
}

@media (min-width: 800px) and (max-width: 1299px) {
    html {
        max-width: 1000px;
        margin: 0 auto;
    }

    .headerLogo img {
        width: 200px;
    }

    .sr-only {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }


    nav {
        padding: .2em;
        display: flex;
        justify-content: space-evenly;
        position: sticky;
        top: 0;
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        margin: 0 2pt;
        text-align: left;
    }

    a {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        padding: 12px;
        font-size: 14pt;
        line-height: 1.5em;
    }

    nav ul li a:hover {
     color: #bfbfbf;
        border-bottom: 2px solid #fbb831;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fbb831;
        min-width: 200px;
        box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        padding: 2px;
        border-radius: 10px;
    }

    li.dropdown {
        position: relative;
    }

    li.dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 11pt;
        color: rgb(0, 0, 0);
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        color: rgb(144, 142, 142);
    }

    .social {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px;

    }

    #instagram-button {
        background: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    #instagram-logo {
        width: 30px;
        height: auto;
        transition: transform 0.3s;
    }

    #instagram-button:hover #instagram-logo {
        transform: scale(1.1);
    }

    footer {
        font-size: x-small;
        text-align: center;
        color: rgb(79, 87, 104);
        padding: 10px;
        margin-top: auto;
        width: 100%;
    }

    h1 {
        font-family: "Rozha One", serif;
        font-weight: 400;
        font-style: normal;
    }

    h2 {
        text-align: center;
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
    }

    p {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
    }

    .centerImages p {
        text-align: center;
        padding: 15px;
    }

    h2 {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 14pt;
        line-height: 1.5em;
        background-color: rgb(79, 87, 104);
        color: white;
        padding: 15px 15px 15px 30px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    button {
        background-color: #fbb831;
        color: rgb(0, 0, 0);
        padding: 2px 10px 2px 10px;
        margin: 15px 10px 15px 10px;
        border-radius: 8px;
        font-size: 12pt;
    }

     .centerImg button {
        display: block;
        margin: auto;
        width: 8%;
        height: auto;
        padding: 10px;
    }

    footer {
    font-size: x-small;
    text-align: center;
    padding: 10px;
    margin-top: auto;
    width: 100%;
    color: rgb(79, 87, 104);
}

.copyright {
    color: white;
}
}

@media only screen and (max-width: 799px) {
    html {
        max-width: 1000px;
        margin: 0 auto;
    }

    .headerLogo img {
        width: 150px;
        padding: 20px;
    }

    .sr-only {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }


    nav {
        padding: .2em;
        display: flex;
        justify-content: space-evenly;
        position: sticky;
        top: 0;
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        margin: 0 2pt;
        text-align: left;
    }

    a {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        padding: 8px;
        font-size: 12pt;
        line-height: 1.5em;
    }

    nav ul li a:hover {
       color: #bfbfbf;
        border-bottom: 2px solid #fbb831;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fbb831;
        min-width: 160px;
        box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        padding: 2px;
        border-radius: 10px;
    }

    li.dropdown {
        position: relative;
    }

    li.dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 8pt;
        color: rgb(0, 0, 0);
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
         color: rgb(255, 255, 255);
        border-bottom: none;
    }

    .social {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px;

    }

    #instagram-button {
        background: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    #instagram-logo {
        width: 30px;
        height: auto;
        transition: transform 0.3s;
    }

    #instagram-button:hover #instagram-logo {
        transform: scale(1.1);
    }

    footer {
        font-size: x-small;
        text-align: center;
        color: rgb(255, 255, 255);
        padding: 10px;
        margin-top: auto;
        width: 100%;
    }

    h1 {
        font-family: "Rozha One", serif;
        font-weight: 400;
        font-style: normal;
    }

    h2 {
        text-align: center;
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
    }

    p {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
    }

    .button-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .button-row button {
        flex: 1 1 auto;
        font-size: 8pt;
        padding: 6px;
        min-width: 160px;
        max-width: 10px;
    }

    .centerImages p {
        text-align: center;
        padding: 15px;
    }

    h2 {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 14pt;
        line-height: 1.5em;
        background-color: rgb(79, 87, 104);
        color: white;
        padding: 15px 15px 15px 30px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    button {
        background-color: #fbb831;
        color: rgb(0, 0, 0);
        padding: 2px 10px 2px 10px;
        margin: 15px 10px 15px 10px;
        border-radius: 8px;
        font-size: 12pt;
    }

    .centerImg button {
        display: block;
        margin: auto;
        padding: 10px;
    }
}
