/* Import Google Fonts - Font Name - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Conthrax-Regular';
    src: url(../Fonts/Conthrax-Regular.otf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* ----- Colors ----- */
/* Primary Color - #E83C3C
   Secondary Color - #363636
   White - #ffffff
   Black - #000000 */

/* ----- Fonts ----- */
/* Font Name - Poppins 

   Font Sizes - Desktop
   H1 - 60px
   H2 - 48px
   H3 - 38px
   H4 - 30px
   H5 - 25px
   H6 - 
   Body - 16px

   H1: 3.75rem;
   H2: 3rem;
   H3: 2.375rem;
   H4: 1.875rem;
   H5: 1.5625rem;
   h6: 1.25rem;
   Body: 1rem;


   Font Sizes - Mobile
   H1 - 48
   H2 - 36
   H3 - 32
   H4 - 28
   H5 - 24
   H6 - 20
   Body - 16 

   Font Sizes - Mobile
   H1: 3rem
   H2: 2.25rem
   H3: 1.875rem
   H4: 1.75rem
   H5: 1.375rem
   H6: 1.25rem
   Body: 1rem */

/* ----- Section -----*/
.section {
    padding: 5% 20%;
}

@media (max-width:1536px) {
    .section {
        padding: 10%;
    }
}

/* ----- Section Header -----*/
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.section-header h2 {
    font-size: 3rem;
    font-family: 'Conthrax-Regular';
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 1.5625rem;
}

.section-header h6 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25rem;
    margin-bottom: 1.5625rem;
    opacity: 75%;
}

@media (max-width:1024px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
    .section-header h6 {
        font-size: 1rem;
    }
}


/* ----- Scrolling Animation -----*/

.fade-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}
  
.fade-in-bottom.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Fonts ----- */
h1 {
    font-size: 3.75rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
}

@media (max-width:1034px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 2.375rem;
    }
    
    h4 {
        font-size: 1.875rem;
    }
    
    h5 {
        font-size: 1.5625rem;
    }
    
    h6 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.75rem;
    }

    a {
        font-size: 0.75rem;
    }
}

/* ----- Buttons -----*/

.button-red-dark {
    text-decoration: none;
    color: #ffffff;
    background-color: #E83C3C;
    padding: 0.5em 2.5em;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.2);
}

.button-red-dark:hover {
    background-color: #c52e2e;
}

.button-red {
    text-decoration: none;
    color: #ffffff;
    background-color: #E83C3C;
    padding: 0.5em 2.5em;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: -2px -2px 35px rgba(0, 0, 0, 0.1);
}

.button-red:hover {
    background-color: #c52e2e;
}

/* ---------- Header Section ---------- */ 

.header {
    width: 100%;
    height: 40vh;
    position: relative;
    background-color: #363636;
}

/* Navigation Bar */
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: #ffffff;
    backdrop-filter: blur(15px);
    box-shadow: 0px 2px 60px rgba(0, 0, 0, 0.2);
    animation-delay: 0.5s ease;
}

.logo {
    width: 200px;
}

@media(max-width:1024px) {
    .logo {
        width: 150px;
    }
}

.navlist {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2em;
}

.navlist li {
    list-style: none;
}

.navlist li a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    transition: all 0.55s ease;
    cursor: pointer;
}

.navlist li a:hover {
    opacity: 60%;
}

#menu-icon {
    color: #000000;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

/* Dropdown Menu */

@media (max-width: 1024px) {
    #menu-icon {
        display: block;
    }

    .navlist {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        flex-direction: column;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
        padding: 0 10%;
        padding-top: 20%;
        padding-bottom: 30%;
        gap: 1.5em;
        transition: all 0.55s ease;
    }

    .navlist li a {
        width: 80vw;
        display: block;
        color: #000000;
        font-family: 'Conthrax-Regular';
    }

    .navlist.open {
        right: 0;
    }
}

@media (max-width: 768px) {
    .navlist {
        align-items: center;
        justify-content: center;
        padding-top: auto;
        padding-bottom: 40%;
    }

    .navlist li a {
        width: 100%;
        border-bottom: none;
    }
}

.header-anim {
    opacity: 0;
    transform: translateY(-30px);
    animation: movedown 0.5s linear forwards;
}

@keyframes movedown {
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Page Name */

.page-name {
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5vh;
    color: #ffffff;
}

.page-name h1 {
    font-family: 'Conthrax-Regular';
    text-align: center;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 10);
}

/* Page */

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

h6 {
    width: 100%;
    text-align: center;
}

/* Services Page */

.page-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-card {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: rgba(54, 54, 54, 0.04);
}

.page-card img {
    width: 100%;
}

@media (max-width: 768px) {
    .page-row  {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
    }
}

/* ---------- Website Footer ---------- */

.footer {
    width: 100%;
    display: flex;
    padding-bottom: 0%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3em;
    background-color: #363636;
}

.footer .links {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25em;
} 

.footer .links a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.5s ease;
}

.footer .links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer .links li {
    list-style: none;
}

.footer .social-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.footer .social-media i {
    padding: 0.35em;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 0.5s ease;
    cursor: pointer;
}

.footer .social-media i:hover {
    color: #363636;
    background-color: #ffffff;
}

.footer .footer-copyright-notice {
    width: 100%;
    margin-top: 3em;
    text-align: center;
    color: #ffffff;
    opacity: 50%;
}

@media (max-width: 768px) {
    .footer .links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 0.5em;
    }
}