/* 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;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}

h2 {
    margin-top: 20px;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.671);
}
h3 {
    font-size: 150%;
    margin-top: 0;
    color: rgba(63, 63, 63, 0.699);
}
h4{
    color: #525252;
    margin-top: 20px;
    font-size: large;
    font-weight: 550;
}
a{
    color: rgb(196, 196, 196);
}
p{
    font-size: small;
}

.section{
    width: 100%;
    height: auto;
    margin-bottom: 500px;
}

/** 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 */
}

/** Portfolio Page*/

/*! Category Tile*/
.category-title {
    margin-top: 100px;
    display: flex;

}
.category-title h2 {
    padding-left: 10px;
    padding-right: 10px;
    min-width: fit-content;
    transform: translateY(-120%);
}
.extra-title{
    width: 100%;
}
/*# Header Line - left Side*/
.left {
    width: 30%;
    height: 3px;
    background: linear-gradient(to left, black, transparent 90%); /* Adjust gradient for the left line */
}
.right {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, black, transparent 90%); /* Adjust gradient for the right line */
}
/*# Header Line - Right Side*/
.left-r {
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, black, transparent 90%); /* Adjust gradient for the left line */
}
.right-r {
    width: 35%;
    height: 2px;
    background: linear-gradient(to right, black, transparent 90%); /* Adjust gradient for the right line */
}

/*! Portfolio Content Containers/grids */
.content-grid {
    width: 100%;
    display: flex;
    flex-direction: row; 
}
/** Images*/
.main-image {
    text-align: center;
    height: auto;
    width: 50%;
}
.main-image img{
    margin-top: 0px;
    width: 70%;
    
}
.description{
    text-align: left;
    line-height: 150%;
    font-size: large;
    width: 50%;
}

.descriptive-text{
  width: 75%;  
  font-size: large;
  line-height: 200%;
}

/**Buttons*/
.wrapper{
    width: 100%;
    text-align: left;
}
.wraptext {
    text-align: center;
    width: 50%;
    height: auto; 
}

.gallery-button {
    width: 300px;
    display: inline-block;
    padding: 5px;
    margin: 50px;
    background-color: #22222263;
    color: white;
    text-decoration: none;
    font-size: large;
    font-weight: 700;
    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 */
}

.gallery-button:hover {
    background-color: #555; /* Adjust the hover color as needed */
}

.more-info{
    font-size: x-large;
    line-height: 150%;
    text-align: left;
    width: 70%;
    margin-left: 15%;
    margin-top: 5%;
}
.more-info p{
    font-size: large;
}

/** Footer*/
footer {
    background-color: #333;
    color: rgb(196, 196, 196);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    bottom: 0;
    width: 100%;
}

/* Media query for screens between 1920px and 1081px wide
@media screen and (min-width: 1081px) and (max-width: 1920px) {
    /* Adjust styles for screens between 1081px and 1920px wide */
    /* You can override or adjust styles for this screen size range here 
}
*/
/* Media query for screens up to 1080px wide */
@media screen and (max-width: 1366px) {

    h2{
        margin-top: 19px;
        font-size: x-large;
    }
    h3{
        font-size: 120%;
    }
    .descriptive-text{
        text-align: left;
        line-height: 160%;
        font-size: 85%;
        width:75%;
    }
    .more-info p{
        font-size: medium;
    }

   

}

/* Mobile */
@media screen and (max-width: 500px){
    body{
        max-width: 100%;
    }
    main{
        margin-bottom: 50px;
    }
    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;
    }

    h2{
        margin: 0;
        padding: 0;
    }
    h3{
        margin-bottom: 10px;
    }

    main{
        width: 100%;
    }
    .section{
        width: 100%;
        height: auto;
        margin-bottom: 500px;
    }

    .content-grid {
        width: 100%;
        display: flex;
        flex-direction: column; 
    }.main-image {
        text-align: center;
        height: auto;
        width: 100%;
    }
    .main-image img{
        margin-top: 0px;
        width: 100%;
    }     
    .description{
        text-align: center;
        line-height: 150%;
        font-size: medium;
        width: 100%;
    }
    .descriptive-text{
        margin-left: 5%;
        width: 90%;  
        font-size: small;
        line-height: 150%;
    }
    /** Images&Video Layout*/
    .content-grid {
        margin-top: 10px;
        padding: 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        
    }
    .content-grid-vid {
        margin-top: 10px;
        padding: 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        
    }

    /** Buttons*/
    .wrapper{
        width: 100%;
        text-align: left;
    }
    .wraptext {
        margin-left: 0;
        text-align: center;
        width: 100%;
        height: auto; 
    }
    .wraptext a{
        margin: 0;
        margin-top: 20px;
        width: 80%;
    }
    
    .category-title h2{
        margin-top: 15px;
        font-size: large;
        text-align: center;

    }
    .more-info{
        margin: 0;
        margin-left: 5%;
        width: 90%;  
        font-size: small;
        line-height: 150%;
    }
    .more-info p{
        margin-top: 10px;
        margin-left: 5%;
        width: 90%;  
        font-size: small;
        line-height: 150%;
    }
    .more-info h4{
        font-size: medium;
    }
    





} 