/* width */
::-webkit-scrollbar {
    width: 5px;
  }
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(32, 32, 32);
  }
  /* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
body {
    width:100%;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
main{
    margin-top: 100px;
}
header {
    background-color: #333;
    color: rgb(196, 196, 196);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    top: 0;
}
.logo img {
    padding-top: 5%;
    margin-left:10%;
    width: 100px; /* Adjust the width as needed */
    height: auto;
}
.navbar {
    margin-left: auto;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}

h1{
    margin-top: 50px;
    color: rgb(39, 39, 39);
    font-size:xxx-large;
    font-weight: lighter;
}
h2 {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.671);
}
h3 {
    color: rgba(63, 63, 63, 0.699);
}
a{
    color: rgb(196, 196, 196);
}
p{
    font-size: small;
}

/**Contact Form*/
.logo_inbody img{
    width: 20%;
}
.contact {
    width: 100%;
    padding-bottom: 200px;
    text-align: center;
}

.contact-details {
    margin-bottom: 60px;
}

.form {
    width: 30%;
    padding: 50px;
    background-color: #a3a3a360;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
    border-radius: 15px;
}

label {
    text-align: left;
    width: 100%;
}

input {
    width: 100%;
    height: 20px;
    padding: 5px;
    box-sizing: border-box;
    
}
input[type="submit"] {
    height: 30px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
input[type="submit"]:hover {
    background-color: #464646;
}
.flex-col{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.message{
    width: 100%;
    height: fit-content;
}

/** Copyright Alert*/
.copyright-alert {
    width: max-content;
    text-align: center;
    display: none; /* Initially hide the alert */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    padding: 10px 20px;
    border-style:solid;
    border-color: red;
    border-radius: 5px;
    z-index: 9999;
}
.copyright-alert p {
    margin: 0;
}
#okButton {
    margin-top: 20px;
    border: none;
    width: 50px;
    padding: 5px;
    background-color: #22222263;
    color: white;
    text-decoration: none;
    font-size: small;
    font-weight: 100;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 50px;
    transition: background-color 0.3s ease; /* Add smooth transition for button color */
}
#okButton:hover {
    background-color: #555; /* Adjust the hover color as needed */
}
/** thank_page*/
.contact-message{
    width: 100%;
    margin-top: 150px;
    text-align: center;
}
.contact-message h1{
    margin-top: 50px;
    color: rgb(107, 107, 107);
    font-size: 500;
}
.contact-message h2{
    margin-top: 50px;
    color: rgb(111, 173, 224);
    font-weight: 700;
}
.contact-message p{
    line-height: 25px;
    margin-top: 50px;
    font-size: large;
}
/* Images */
.highlights {
    margin-bottom: 40px;
    margin-top: 100px;
}
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.image-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: calc(19.9%); /* Adjust the width of each image container */
    margin-right: 1px; /* Adjust the spacing between images */
    margin-bottom: 20px; /* Adjust the spacing between rows */
}
.image-container img {
    width: 100%;
    height: auto;
    transition: filter 0.1s ease; /* Add smooth transition for grayscale effect */
    /*filter: grayscale(20%);*/
}
.image-container h2 {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.329); /* Semi-transparent black background */
    color: white;
    margin: 0;
    padding: 10px;
    font-size: 35px;
    text-align: center;
}
.image-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; /* Ensure the link is clickable above the title */  
}
/** Footer*/
footer {
    position: fixed;
    background-color: #333;
    color: rgb(196, 196, 196);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    bottom: 0;
    width: 100%;
}



@media only screen and (max-width: 1366px) {
    main{
        margin-top: 50px;
    }
    .contact {
        width: 100%;
        padding-bottom: 170px;
        text-align: center;
    }
    .contact-details {
        margin-bottom: 30px;
        line-height: 20px;
    }
    .form {
        padding: 30px;
        background-color: #33333360;
        max-width: 600px;
        margin: 0 auto;
        border-radius: 15px;
    }
    input,
    textarea {
        width: 100%;
        padding: 5px;
        box-sizing: border-box;
        
    }
    /** thank_page*/
    .contact-message{
        width: 100%;
        margin-top: 80px;
        text-align: center;
    }
    .contact-message h1{
        margin-top: 50px;
        color: rgb(107, 107, 107);
        font-size: xx-large;
    }
    .contact-message h2{
        margin-top: 50px;
        color: rgb(111, 173, 224);
        font-weight: 700;
    }
    .contact-message p{
        line-height: 25px;
        margin-top: 50px;
        font-size: large;
    }
    .highlights {
        margin-bottom: 40px;
        margin-top: 50px;
    }

}

@media screen and (max-width: 500px){
    main{
        margin-top: 100px;
        width: 100%;
    }
    h2{
        font-size: large;
    }
    header {
        width: 100%;
        height: 60px;
        background-color: #333;
        color: rgb(196, 196, 196);
        display: block;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        z-index: 10;
        top: 0;
    }
    .logo{
        text-align: center;
    }
    .logo img{
        padding-top: 10px;
        margin: 0;
    }
    nav{
        width: 100%;
        text-align: center;
    }

    .logo_inbody img{
        width: 60%;
    }
    .contact {
        margin-left: 5%;
        width: 90%;
        padding-bottom: 200px;
        text-align: center;
    }
    .contact-details {
        margin-bottom: 60px;
        line-height: 20px;
    }
    .form {
        padding: 15px;
        margin: 0;
        width: 90%;
        background-color: #33333360;
        display: flex;
        flex-direction: column;
        border-radius: 15px;
    }
    label {
        margin: 0;
        text-align: left;
        font-size: small;
    }
    input,
    textarea {
        width: 100%;
        height: 15px;
        padding: 0px;
        box-sizing: border-box;
        
    }
    input[type="submit"] {
        background-color: #333;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 10px;
    }
    .copyright-alert{
        width: 80%;
    }

    footer {
        position: fixed;
        background-color: #333;
        color: rgb(196, 196, 196);
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        bottom: 0;
        z-index: 10;
        width: 100%;
    }
    /* thank_you page*/
    .contact-message h2{
        margin-top: 20px;
        color: rgb(111, 173, 224);
        font-weight: 700;
        font-size: x-large;
    }
    .contact-message p{
        margin-left: 5%;
        width: 90%;
        line-height: 25px;
        margin-top: 20px;
        font-size: medium;
    }
    .highlights {
        margin-bottom: 50px;
        margin-top: 25px;
    }
    .image-grid {
        flex-direction: column;
    }
    .image-container {
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: relative;
        width: calc(100%); /* Adjust the width of each image container */
        margin-right: 1px; /* Adjust the spacing between images */
    }    
    


}