/* FONT SIZING AND IMPORTANT STYLES start*/
img {
   
    max-width: 100%;
    vertical-align: baseline;
}
h1,h2,h3,h4{
    font-family:'Arvo' , sans-serif;
}
p,a {
    font-family: 'Voces' , sans-serif;
}
h1 {
    font-size: 24px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
p {
    font-size: 14px;
}
li {
    list-style-type: none;
}
a {
    color: #000;
    text-decoration: none;
}

/* FONT SIZING AND IMPORTANT STYLES end*/


/* HEADER STYLING */
:root {
    --ghsred: #E2342A;
    --ghsyellow: #F7E800;
}
body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    min-width: 250px;
    min-height: 300px;
    min-height: 100vh;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 2;
    top: 0;
    background-color: #fff;
    height: 10vh;
    min-height: 50px;
    border-bottom: 5px solid var(--ghsred);
}
.logo {
    width: 100%;
    min-width: 150px;
    max-width: 350px;
}
header a {
    margin: auto 0 auto 0;
    width: 30%;
}

.nav {
    padding: 0;
    margin: 0;
}
.nav li {
   display: inline-block;
   margin-left: 10px;
   margin-right: 10px;
}
.nav h4 {
    transition: all .4s ease;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 0;
}
.nav h4:hover {
    color: var(--ghsred);
}
.nav li a {
    font-weight: 900;
}
#nav-checkbox , .close_icon{
    display: none;
}
.menu_icon {
    display: none;
}
.close_icon_img {
    display: none;
}
.overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%; 
}
/* .dropdown_header_box:hover > .dropdown_list {
    display: flex;        
    position: fixed;      
    top: 0;      
    flex-direction: column;
    background-color: #ffa;
    border-top: 5px solid var(--ghsred);
    padding: 0;
    min-width: 150px;
    z-index: 0;
    box-shadow: inset 0px 8px 10px rgba(0, 0, 0, 58%);
    

} */

 .dropdown_list {
    display: flex;        
    position: absolute;
    top: 100%;       
    left: 60;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border-top: 5px solid var(--ghsred);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;

    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.dropdown_header_box {
    height: 100%;
}
.dropdown_list .dropdown_element {
    margin: 0;
    padding: 5px 10px;
}
.dropdown_element {
    
    border-bottom: 2px solid var(--ghsred);
    padding: 5px 10px;
}
.dropdown_element a {
    font-family: 'Arvo', sans-serif;
    font-weight: 700;
}
.dropdown_element a:hover {
    transition: all 0.4s ease;
    color: var(--ghsred);
}
.dropdown_header_box:hover > .dropdown_list {
     opacity: 1;
  pointer-events: all;
  transform: translateY(0); 
}


    
/* Header Styling End */

/* Footer Styling */

footer {
    margin-top: 40px;
}
.footer_info {
    display: flex;
    flex-direction: row;
    border-top: 4px solid var(--ghsred);
    justify-content: center;
    gap: 7vw;
    padding: 1vw;
    color: #000;
    background-color: #fff;
}
.footer_header {
    margin: 0;
    text-decoration: underline var(--ghsred);
}
.footer_section{
    width: 20vw;
}
.footer_section ul {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}
.footer_section ul li {
    margin: 0;
    padding: 3px;
}
.footer_section ul li a {
    color: #000;
    transition: all .2s ease;
}
.footer_section ul li a:hover {
    color: var(--ghsred);
}

.footer_logo {
    width: 100%;
    max-width: 300px;
}

.copyright{
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 10px 5px;
    text-align: center;
    color: #000;
    background-color: #fff;
    height: 30px;
    border-top: 1px solid var(--ghsred);
}
.copyright ul {
    display: flex;
    flex-direction: row;
    height: 37px;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.copyright p {
    display: flex;
    align-items: center;
    font-weight: 300;
    margin: 0;
    color: #000;
}
/* Footer Styling End */

/* PRODUCT PAGE STYLING START*/
.title_bar {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 12vh;
}
hr {
    width: 40px;
    margin: auto 40px ;
    border: 2px solid var(--ghsyellow);
    text-align: left;
    color: #000;
    display: inline-block;
    vertical-align: middle;
}

h1 {
    display: inline-block;
    
}
.project_title ul {
    display: flex;
    justify-content: space-evenly;
    gap: 10%;
    text-align: center;
    margin: 0 10px;
}
.projectbtn {
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px #ddd solid;
    background-color: #fff;
    font-family: 'Arvo', sans-serif;
    font-weight: 900;
    transition: all .2s;
}
.projectbtn:hover {
    color: #fff;
    background-color: var(--ghsred);
}
.project_writeup {
    max-width: 800px;
    text-align: justify;
    margin: 25px auto;
}


/* PRODUCT PAGE STYLING START*/
body {
    min-width: 350px;
}

.descriptionsvg {
    width: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
.project_bg{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5%;
    background-color: #8B8B8B;
    max-height: 300px;
    margin-top: 30px;
    height: 25vw;
}
.project_inner {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 10px;
    width: 70%;
    max-width: 900px;
    height: 100%;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 58%);
}
.tantra_info,.papts_info,.willow_info,.hazel_info,.kutunse_info,.nobles_info{
    display: none;
    opacity: 0;
    transition: opacity .5s ease-in;
}
   
.slideshow {
    border-radius: 10px 0 0 10px;
    width: 60%;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 45%;
}


.details > * {
    margin: 0;
    padding: 0 0 1% 5%;
    width: 95%;
}
.details ul{
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
}
.details ul li {
    margin: 0;
    padding: 0 10px;
}
.details ul li p {
    margin: 3px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.details h2 {
    border-bottom: 5px solid var(--ghsred);
    align-self: start;
    padding-top: 1vw;
}
.schedulebtn { 
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    font-size: 80%;
    width: 60%;
    height: 20px;
    border-radius: 8px;
    margin: auto 0 10px 0;
    align-self: center;
    text-align: center;
    border: 2px solid #aaa;
    transition: all .1s linear;
    padding: 5px;
    overflow: hidden;
}

.schedulebtn:hover {
    border: 1px solid #fff;
    color: #fff;
    background-color: var(--ghsred);
}
.project_writeup{
    text-align: center;
}
@media (max-width:500px){
    hr {
        margin: 0 15px 0 15px;
    }
    .project_bg {
        height: 450px;
        max-height: none;
    }
    .project_inner {
        flex-direction: column;
        width: 85%;
        height: 90%px;
    }
    .project_inner .slideshow,.details {
        text-align: left;
        width: 100%;
    }
    .details {
        height: 40%;
    }
    .slideshow {
        height: 60%;
        border-radius: 10px 10px 0 0;
    }
    .details ul{
        display: flex;
        flex-direction: row;
        padding: 0;
        margin: 0;
    }
    .details ul li:first-child {
        margin-top: 7px;
    }
}
/* PRODUCT PAGE STYLING END*/

/* GALLERY STYLING START */
.image_grid {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    width: 100%;
    gap: 10px;
    justify-items: center;
	align-items: center;
	justify-content: center;    
}
.image_grid img {
    width: 100%;
    height: 100%;
}
@media (max-width:730px) {
    /* FONT SIZING MOBILE */
    h1 {
        font-size: 18px;
    }
    h2 {
        font-size: 14px;
    }
    h3 {
        font-size: 12px;
    }
    h4 {
        font-size: 10px;
    }
    p {
        font-size: 8px;
    }
    /* END */

    /* HEADER STYLING MOBILE */
    .nav {
        display: none;
    }
    label {
        margin-top: auto;
        margin-bottom: auto;
        margin-right: 10px;
    }
    .menu_icon {
        display: block;   
        cursor: pointer;
        max-width: 20px;
    }
    .nav {
        position: fixed;
        display: flex;
        flex-direction: column;
        right: -14em;
        align-items: start;
        height: 100%;  
        width: 25%;
        top: 0;
        bottom: 0;
        z-index: 100;
        background-color: #fff;
        padding:0;
        margin: 0;
        transition: all .4s ease;
        box-shadow: 5px 5px 10px 3px #ddd;
    }
    .nav li {
        display: block;
        margin: 0;
        padding: 0;
        text-align:  right;
        border-bottom: 2px solid var(--ghsred);
    }
    .nav h4 {
        width: 90%;
        margin: 0;
        padding: 20px 0;
    }
    .nav .close_icon {
        margin: 0;
        padding: 0;
        display: block;
        cursor: pointer;  
          
    }
    .nav .close_icon label {
        text-align: right;
        
    }
    .nav .close_icon_img {
        cursor: pointer;
        display: block;
        text-align: right;
        padding-left: 70%;
        padding-top: 15px;
       
    }
    #nav-checkbox:checked ~ .nav {
        right: 0;
        display: block;
        cursor: pointer;
    }
    .dropdown_list {
    display: unset;   
    position: unset;     
    left: 0;
    margin: 0;
    padding: 0;
    background: white;
    opacity: 1;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 0px;
    }
    .dropdown_header_box {
        height: auto;
    }
    .dropdown_element:first-child {
        border-top: 2px solid var(--ghsred);
    }
    .dropdown_list .dropdown_element {
        margin: 0;
        padding: 10px 10px;
    }
    .dropdown_list .dropdown_element {
        border-bottom: 2px dotted var(--ghsred);
        padding: 10px 30px 5px 0;
        
    }
    .dropdown_element a {
        font-family: 'Arvo', sans-serif;
        font-weight: 200;
        font-size: 12px;
        
    }
    .dropdown_element a:hover {
        color: var(--ghsred);
    }
    .dropdown_header_box:hover > .dropdown_list {
        opacity: 1;
    pointer-events: all;
    transform: translateY(0); 
    }
    /* END */
    /* FOOTER STYLING */
    .footer_info {
        
        justify-content: space-between;
        
    }
    .socials {
        width: 100%;
        order: -1;
        padding: 0;
        margin: 10px 50px;
    }
    .footer_header {
        font-size: 16px;
    }
    .footer_section li {
        font-size: 13px;
    }
    .socials_logo {
        width: 35px;
    }
     /* END */
    
    /* END */
 }  
 @media (max-width:500px){
    hr {
        margin: 0 15px 0 15px;
    }
    .project_bg {
        height: 450px;
        max-height: none;
    }
    .project_inner {
        flex-direction: column;
        width: 85%;
        height: 90%px;
    }
    .project_inner .slideshow,.details {
        text-align: left;
        width: 100%;
    }
    .details {
        height: 40%;
    }
    .slideshow {
        height: 60%;
        border-radius: 10px 10px 0 0;
    }
    .details ul{
        display: flex;
        flex-direction: row;
        padding: 0;
        margin: 0;
    }
    .details ul li:first-child {
        margin-top: 7px;
    }

    /* Footer Mobile Styling */
    .footer_info {
        flex-direction: column;
        gap: 20px;
    }
    .footer_section {
        width: 50%;
        margin-left: 10px;
    }
    .footer_section:first-child{
        align-self: center;
    }
    .footer_header {
        font-size: 24px;
    }
    .socials_logo {
        width: 30px;
    }
    .copyright {
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
        height: auto;
    }
    .copyright p {
        font-size: 12px;
    }
}   
@media (min-width:1000px){
    .details h1 {
        font-size: 27px;
    }
    .details h2 {
        font-size: 25px;
    }
    .descritionsvg {
        width: 25px;
    }
    .details ul {
        gap: 10%;
    }
    .details li {
        width: 40px;
    }
    .details ul li p {
        width: 100%;
    }
    .schedulebtn {
        margin-bottom: 20px;
        font-size: 16px;
        width: 60%;
    }
}   
