

@font-face {
    font-family: CarroisGothicSC;
    src:
        local('CarroisGothicSC-Regular'),
        url('../fonts/Carrois_Gothic_SC/CarroisGothicSC-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: DidactGothic;
    src:
        local('DidactGothic-Regular'),
        url('../fonts/Didact_Gothic/DidactGothic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}




/* ------------ GLOBAL STYLES ------------ */



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html {
    background-color: #010101;
    font-family: DidactGothic;
    font-size: 1em;
    color: #fff;
}

.heading {
    font-family: CarroisGothicSC;
}

.button {
    border-radius: 28px;
    padding: 10px 40px;
    font-size: 1.25em;
    text-decoration: none;
    margin: 0 10px;
}

.white-btn {
    background-color: #fff;
    box-shadow: inset 0 -3px 0 1px #CCC;
    color: #000;
}

.white-btn:hover {
    background-color: #909090;
    box-shadow: none;
    color: #fff;
}

.g-btn {
    background-color: rgba(185, 190, 205, .1);
    border: 1px solid #B9BECD;
    color: #B9BECD;
}

.g-btn:hover {
    background-color: rgba(185, 190, 205, .3);
    border-color: #FFF;
    color: #FFF;
}

h1, h2, h3, h4 {
    font-weight: 400;
}


/* ------------ NAV STYLES ------------ */

nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999999999999;
}

.desktop {
    background-color: #000;
    border-bottom: 1px solid #6C6C6C;
    padding: 0 20px;
    /*filter: drop-shadow(0 5px 10px #000);*/
}

.mobile {
    display: none;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.nav-logo {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 10px;
}

.nav-logo img {
    height: 60px;
}

h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(-6px);
    font-size: 1.25em;
}

.offset {
    padding-left: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav .link {
    font-size: 1.25em;
}

nav .link:hover {
    opacity: 50%;
}






/* ------------ HEADER STYLES ------------ */

.hero-img {
    height: 100vh;
    width: 100%;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 70%;
    z-index: 0;
    position: absolute;
    pointer-events: none;
}


.hero {
    display: flex;
    height: 100vh;
    width: 100%;
}

.hero-container {
    display: flex;
    z-index: 9999;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    padding-left: 80px;
    height: 100vh;
    background-color: #010101;
    position: relative;
    z-index: inherit;
}

.hero-shape {
    height: inherit;
    transform: translateX(-60px);
    z-index: 99;
}

h2 {
    font-size: 4em;
    margin-bottom: 36px;
}


.btn-group {
    margin-top: 60px;
}



/* ------------ ABOUT STYLES ------------ */


#about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 72px 60px;
    gap: 72px;
}

aside {
    padding: 32px;
    background-color: rgba(185, 190, 205, .25);
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(185, 190, 205, .25);
    max-width: 360px;
}

aside h3 {
    margin-bottom: 24px;
}

.contact {
    display: grid;
    gap: 8px;
}

.address, .phone {
    color: #B9BECD;
    text-decoration: none;
}

.address:hover, .phone:hover {
    text-decoration: underline;
}

.phone i, .email i {
    padding-right: 8px;
}

.hours {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 60px 8px 36px;
    color: #B9BECD;
}

.hours ul {
    list-style-type: none;
}

aside p {
    color: #B9BECD;
}

.about {
    max-width: 50%;
}

.about h3 {
    font-size: 2em;
    margin-bottom: 24px;
}

.about p {
    margin-bottom: 60px;
}

.about h4 {
    font-size: 1.25em;
    margin-bottom: 24px;
}

.bullet-sections {
    display: flex;
    flex-direction: row;
    gap: 56px;
}

.bullet{
    gap: 48px;
}

.bullets ul {
    display: grid;
}

.bullets li {
    color: #D3D3D3;
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.bullets li i {
    color: #fff;
    margin-right: 10px;
    font-size: .8em;
}







/* ------------ GALLERY STYLES ------------ */

#gallery {
    margin: 160px 0 100px;
    text-align: center;
}

.gallery-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 18px;
    padding: 0 26px;
    justify-content: center;
}

#gallery .img {
    border: 1px solid #6C6C6C;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#gallery p {
    margin-top: 32px;
}

.instagram:hover {
    opacity: 50%;
}

.instagram-logo {
    margin-top: 18px;
    height: 24px;
}



/* ------------ FOOTER STYLES ------------ */

footer {
    margin-top: 50px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    color: #6C6C6C;
}

.credit {
    color: #6C6C6C;
    text-decoration: none;
}

.credit:hover {
    text-decoration: underline;
}