:root {
    --primary-color: #0D1321;
    --secondary-color: #1D2D44;
    --third-color: #C2A878;
    --fourth-color: #F0EBD8;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Playfair", sans-serif;
    font-size: 12px;
    width: 100%;
}

/* Navigation & Header Section */

header {
    color: var(--fourth-color);
    background: var(--primary-color);
    height: 100vh;
    width: 100%;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 1280px;
    padding: 10px 0px;
    transition: all 500ms ease;
}

nav.scrolled {
    background: var(--primary-color);
    box-shadow: 0 16px 14px -8px rgba(0,0,0,.3);
    border-radius: 0 0 10px;
    top: 0;
    padding: 10px;
}

.mobile-nav, .mobile-menu-container {
    display: none;
}

.navlogo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.logotext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logotexttop {
    font-size: 1.6em;
    text-transform: uppercase;
}

.logotextbot {
    font-size: 1em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", sans-serif;
    color: var(--third-color);
}

nav ul {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    gap: 22px;
    list-style: none;
}

nav a{
    text-decoration: none;
    color: var(--fourth-color);
    font-size: 1.2em;
}

nav a:hover {
    color: var(--third-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.btn a:hover {
    text-decoration: none;
}

/* Hero Styling */

.herosection {
    background-image: url(/Assets/herobackgroundimg3.png);
    z-index: 1;
    height: 100vh;
    /* margin-top: -79px; */
    background-repeat: no-repeat;
    align-items: center;
}

.herosectiongradient {
    background: radial-gradient(circle at center, rgba(13,19,33,.7) 0%,rgba(13,19,33,1) 100%);
    z-index: 10;
}

.herotext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    /* padding-top: 79px; */
}

.herotexttop {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.herotext h1 {
    font-size: 5em;
    margin: 0%;
}

.herotext h2 {
    font-size: 3.5em;
    font-style: italic;
    color: var(--third-color);
}

footer {
    background-color: var(--primary-color);
}

.footercontent {
    display: flex;
    flex-direction: column;
    color: var(--fourth-color);
}

.footercontenttop {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footernav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 10px;
}

.footernav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    gap: 12px;
    list-style: none;
    padding: 0;
    
}

.footersocials {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 10px;
}

.footersocials ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.footertitles {
    color: var(--fourth-color);
    text-transform: uppercase;
    font-family: "JetBrains Mono", sans-serif;
}

.footerlink {
    display: flex;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: var(--fourth-color);
    gap: 10px;
    border: var(--fourth-color);
}

.sectionseperator {
    border: 1px solid rgb(240,235,216,15%);
}

.footercontentbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.companyname {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: "JetBrains Mono", sans-serif;
    text-decoration: none;
    color: rgb(240,235,216,15%);
}

.footercontentbot ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    list-style: none;
    text-decoration: none;
}

.legalinfo {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "JetBrains Mono", sans-serif;
    color: rgb(240,235,216,15%);
}

/* Button Styling */

.btn {
    display: inline-flex;
    background-color: var(--secondary-color);
    padding: 10px 10px;
    border:2px, solid, #C2A878;
}

a .btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--third-color);
    font-family: "JetBrains Mono", sans-serif;
    font-size: 1em;
    text-decoration: none;
    text-transform: uppercase;
    gap: 10px;
}

/* Tablet Styling */
@media (max-width:1280px) {
    .wrapper {
        max-width: 1001px;
    }

    nav {
        width: 100%;
        left: 0;
        right: 0;
        padding: 10px;
    }

    .footercontent {
        padding: 0 10px;
    }
}

@media (max-width:1024px) {
     .wrapper {
        max-width: 860px;
    }
    
    nav {
        display: none;
    }

    nav.mobile-nav {
       display: flex;
       padding: 20px; 
    }

    nav.mobile-nav.scrolled {
    background: var(--primary-color);
    box-shadow: 0 16px 14px -8px rgba(0,0,0,.3);
    border-radius: 0 0 10px;
    top: 0;
    padding: 20px;
    }

    .mobile-menu-container {
      position: fixed;
      height: 100vh;
      width: 100%;
      top: 0;
      left: 100%;
      background: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 200;
      gap: 60px;
      transition: all 400ms ease;  
    }

    .mobile-menu-container.active{
        left: 0;
    }

    .mobile-menu-container.active .close-icon {
        opacity: 1;
        pointer-events: auto;
    }

    .close-icon {
        position:fixed;
        top: 32px;
        right: 75px;
        opacity: 0;
        pointer-events: none;
        transition: all 400ms ease; 
    }

    .mobile-menu-container ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        text-decoration: none;
        text-transform: uppercase;
        gap: 60px;
    }

    .mobile-menu-container a {
        list-style: none;
        text-decoration: none;
        font-size: 2em;
        color: var(--fourth-color);
    }

    .mobile-menu-links .btn {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        align-self: center;
    }
}

/* Mobile Styling */
@media (max-width:799px) {

    body {
        text-align:center;
    }

    .herotexttop {
        padding-top: 100px;
    }

    footer {
        padding-top: 10px;
    }

    .footercontenttop {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footercontentbot {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
