/* ----- General Styling ----- */
/* Hide scrollbar */
html {
    overflow: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
::-webkit-scrollbar {
    width: 0; /* Chrome and Safari */
}
/* Remove text cursor over text elements */
.prevent_select { 
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
/* Underline animation for links */
.template_underline_animation {
    position: relative;
    z-index: 1;
    /* top: -50%; */
    /* width: 30vw; */
    /* text-align: center; */
    text-decoration: none;
}
.template_underline_animation::after {
    content: ""; /* Empty content to create a line */
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0; /* Start width at 0 for the animation */
    height: 2px; /* Thickness of the underline */
    background-color: #991009; /* Color of the underline */
    transition: width 0.3s ease; /* Animate the width */
}
.template_underline_animation:hover::after {
    width: 100%; /* Fill underline to the full width of the text */
}
/* Active state to keep underline on click */
.template_persistent_underline::after {
    width: 100%;
}

/* Underline for clicked inputs */
.template_textarea_underline {
    border-bottom: 2px solid rgb(85, 85, 85);
}
.template_textarea_underline:focus {
    border-bottom: 3px solid black;
}

/* Template paddings */
.template_100px_padding {
    height: 100px;
    width: 100vw;
}
.template_150px_padding {
    height: 150px;
    width: 100vw;
}
.template_300px_padding {
    height: 300px;
    width: 100vw;
}
.template_500px_padding {
    height: 500px;
    width: 100vw;
}

/* Set default element styling */
* {
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}
body {
    background-color: rgb(18, 18, 22);
}
h1,h2,h3,h4,h5,h6,p,a,div {
    color: white;
}
a {
    font-size: 20px;
}
h2 {
    font-size: 32px;
}
p {
    font-size: 20px;
}
input {
    outline: none; /* default styling */
    border: 0px;
    padding: 0px;
}
textarea {
    outline: none; /* default styling */
    border: 0px;
    padding: 0px;
    resize: none; /* removes manual resizing */
}
button {
    outline: none; /* default styling */
    border: 0px;
    padding: 0px;
}

/* Template Flexbox alignments */
.template_justify_center_h {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.template_justify_center_v {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.template_align_center_h {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.template_align_center_v {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ----- Header element styling ----- */
#template_header {
    z-index: 10;
    position: fixed;
    top: 0;
    height: 125px;
    width: 100vw;
    background-color: rgb(0, 0, 0);
    justify-content: space-between;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out; /* Adjust duration here */
}
.template_header_hidden {
    transform: translateY(-100%);
    opacity: 0;
}
#template_header_logo {
    font-size: 44px;
    font-weight: bold;
    margin-left: 100px;
}
#template_header_nav {
    margin-right: 100px;
}
.template_header_nav_links {
    margin-left: 30px;
}
@media (max-width: 1000px) {
    #template_header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #template_header_logo {
        margin: 0px 0px 10px;
        font-size: 36px;
    }
    #template_header_nav {
        margin: 10px 0px 0px;
    }
    .template_header_nav_links {
        font-size: 20px;
    }
    .template_header_nav_links:first-child {
        margin: 0px;
    }
}
@media (max-width: 700px) {
    #template_header_logo {
        font-size: 28px;
    }
    .template_header_nav_links {
        font-size: 16px;
    }
}

/* ----- Footer element styling ----- */
#template_footer {
    height: 350px;
    width: 100vw;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    background-color: black;
    border-top: 10px solid rgb(153, 16, 9);
}
#template_footer_content_container {
    width: 90vw;
}
#template_footer_heading {
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 30px;
    color: white;
}
.template_footer_text {
    font-size: 20px;
}
#template_footer_sections_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
}
.template_footer_sections {
    width: 20vw;
    display: flex;
    justify-content: center;
}
.template_footer_contact_subcontainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}
.template_footer_contact_options_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.template_footer_contact_icons {
    height: 30px;
    width: 30px;
    padding-right: 15px;
}
.template_footer_separate_line {
    margin-bottom: 20px;
}
.template_footer_separate_line_thin {
    margin-bottom: 10px;
}
#template_footer_socials_container {
    height: 140px;
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
#template_footer_socials_heading {
    font-size: 24px;
    color: white;
}
#template_footer_socials_options_container {
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
}
.template_footer_socials_icons_container {
    margin-left: 10px;
    margin-right: 10px;
}
.template_footer_socials_icons {
    height: 34px;
    width: 34px;
    opacity: 70%;
}
.template_footer_socials_icons:hover {
    opacity: 100%;
}
@media (max-width: 1000px) {
    #template_footer {
        height: 400px;
    }
    #template_footer_sections_container {
        width: 80vw;
        padding: 0px 20px 20px 20px;
        flex-direction: column;
    }
    .template_footer_sections {
        width: 80vw;
    }
    .template_footer_contact_subcontainer {
        width: 80vw;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .template_footer_contact_options_container {
        flex-direction: column;
    }
    .template_footer_contact_icons {
        padding: 0px 0px 10px;
    }

    #template_footer_address_container {
        justify-content: flex-start;
        padding: 20px 0px 0px;
    }

    #template_footer_socials_container {
        height: auto;
        width: 100%;
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #template_footer_socials_options_container {
        margin: 0px;
    }
    .template_footer_socials_icons_container {
        margin: 10px 20px 0px;
    }

    .template_footer_text {
        font-size: 15px;
    }
}