* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 120%;
    color: #181818;
    background-color: #FFFFFF;
}

/*
    Navigation
*/



#nav {
    display: flex;
    padding: 2rem 2rem 16rem 2rem;
    width: 100%;
    z-index: 1000;
}

#nav .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

#nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 1.6rem;
}

#nav .logo {
    padding: 0;
}

#nav .logo img {
    width: 32rem
}

#nav a.logo {
    color: rgba(0, 0, 0, 1.0);
}

#nav a {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    padding: 0 2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

#nav a:last-of-type {
    padding-right: 0;
}

#nav a:hover {
    color: rgba(0, 0, 0, 1.0);
    text-decoration: none;
}

#nav .logo {
    font-size: clamp(2.4rem, 2vw, 3.2rem);
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 1.6rem;
    letter-spacing: -0.04rem;
}

@media screen and (max-width: 1024px) {
    #nav {
        padding: 2rem 2rem 16rem 2rem;
    }

    #nav .container {
        flex-direction: column;
        align-items: flex-start;
    }

    #nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    #nav li {
        margin-bottom: 1rem;
    }

    #nav a {
        padding: 0 0 0 0;
    }
    
    #nav .logo {
        margin-bottom: 2.4rem;
    }
    
}

/*
    Hero Section
*/

#hero {
    height: 90vh;
    display: flex;
    margin-bottom: 24rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    column-gap: 2rem;
    padding: 0 2rem 2rem 2rem;
}

.hero-grid .grid-item {
    border-radius: 0;
    display: flex;
    flex-direction: column;
    color: #FFF;
    justify-content: flex-end;
}

#hero .landscape {
    background: url('../img/landscape/IMG_8069.jpg') no-repeat center center;
    filter: grayscale(100%);
    background-size: cover;
}

#hero .event {
    background: url('../img/events/events-18.jpg') no-repeat center center;
    filter: grayscale(100%);
    background-size: cover;
}

#hero .sports {
    background: url('../img/sports/sports-5.jpg') no-repeat center center;
    filter: grayscale(100%);
    background-size: cover;
}

#hero .landscape:hover, #hero .event:hover, #hero .sports:hover {
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;
}

#hero h2 {
    font-size: clamp(3.2rem, 2.5vw, 5rem);
    line-height: 120%;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 1.6rem;
    max-width: 50%;
}

#hero a {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    max-width:90%;
}

#hero a:hover {
    color: rgba(255, 255, 255, 1.0);
}

#hero .content {
    background: linear-gradient(to top, #000 60%, transparent 100%);
    display: flex;
    flex-direction: column;    
    padding: 2rem;
}

@media screen and (max-width: 1024px) {

    #hero {
        height: fit-content;
        margin-bottom: 16rem;
    }
    #hero .hero-grid {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2rem;
    }

    #hero .grid-item {
        min-height: 500px
    }

    #hero h2 {
        max-width: 100%;
    }
    
}

/*
    Bio Section
*/

#bio {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 2rem 2rem;
    margin-bottom: 16rem;
}

#bio .sub-head {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    grid-column: 1 / span 12;
    display: flex;
    justify-content: space-between;
}

#bio .sub-head p {
    font-weight: 600;
}

.bio-img {
    grid-column: 1 / span 6;
    border-radius: 0;
}

.bio-img img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.bio-img p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.65);
    text-transform: uppercase;
}

.bio-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 7 / span 6;
    padding: 4rem;
}

.bio-description p:first-of-type {
    color: #181818;
    font-size: clamp(3.2rem, 2.5vw, 5rem);
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 5.2rem;
}

.bio-description p {
    color: rgba(0, 0, 0, 0.65);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 2.4rem;
}

@media screen and (max-width: 1024px) { 
    #bio {
        grid-template-columns: repeat(1, 1fr);
    }

    #bio .sub-head p {
        margin-bottom: 1rem;
    }

    .bio-img {
        grid-column: 1 / span 12;
    }

    .bio-description {
        grid-column: 1 / span 12;
        padding: 0;
    }

    .bio-description h2 {
        padding-top: 4rem;
        margin-bottom: 2.4rem
    }
    
}

/*
    Service section
*/

#service-header {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem 0 1rem;
    width: 100%;
}

#service-header h1 {
    font-size: 10vw;
    line-height: 74%;
    margin-bottom: 140px;
}

#service-header p {
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {
    #service-header {
        padding: 0 2rem;
    }
    #service-header h1 {
        margin-bottom: 60px;
    }
}

#service-gallery {
    display: flex;
    padding: 0 2rem;
    margin-bottom: 24rem;
    width: 100%;
}

#service-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

#service-gallery .gallery-grid .grid-item {
    border-radius: 0;
    display: flex;
    flex-direction: column;
    color: #000;
    justify-content: flex-start;
    align-items: center;
}

#service-gallery .gallery-grid .grid-item:last-of-type {
    justify-content: center;
}

#service-gallery .gallery-grid .grid-item:hover img {
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;    
}

#service-gallery .gallery-grid .grid-item img {
    display: flex;
    filter: grayscale(100%);
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {

    #service-gallery .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2rem;
    }

    #service-gallery .gallery-grid .grid-item img {
        filter: grayscale(0);
    }
}

/*
    Service Description Section
*/

#service-description {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 2rem 2rem;
    margin-bottom: 16rem;
}

#service-description {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 2rem 2rem;
    margin-bottom: 16rem;
}

#service-description .sub-head {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    grid-column: 1 / span 12;
    display: flex;
    justify-content: space-between;
}

#service-description .sub-head p {
    font-weight: 600;
}

#service-description .overview {
    grid-column: 1 / span 12;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 80px;
}

#service-description .overview p:first-of-type {
    color: #181818;
    font-size: clamp(3.6rem, 2.5vw, 5rem);
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 3.2rem;
    grid-column: 1 / span 7;
}

#service-description .overview p {
    color: rgba(0, 0, 0, 0.5);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 140%;
    grid-column: 1 / span 5;
    margin: 0 0 32px 0;
    padding: 0;
}

strong {
    color: #000;
}

#service-description iframe {
    grid-column: 1 / span 12;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {

    #service-description .overview p:first-of-type {
        grid-column: 1 / span 8;
    }

    #service-description .overview p {
        grid-column: 1 / span 8;
    }


}


@media screen and (max-width: 1024px) {
    #service-description {
        grid-template-columns: repeat(1, 1fr);
    }

    #service-description .sub-head p {
        margin-bottom: 1rem;
    }

    #service-description .overview {
        padding-top: 6rem;
    }

    #service-description .overview p:first-of-type {
        grid-column: 1 / span 12;
    }

    #service-description .overview p {
        grid-column: 1 / span 12;
        margin-bottom: 0.41rem;
    }
    
}

/*
    Brand Section
*/

#brand {
    display: flex;
    padding: 0 2rem;
}

#brand .logo {
    background: #000;
    display: flex;
    justify-content: center;
    padding: 4rem 4rem;
    width: 100%;
}

#brand .logo img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/*
    Footer Section
*/

#footer {
    display: flex;
    padding: 0 2rem 2rem;
}

#footer .sub-head {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#footer .sub-head p {
    font-weight: 600;
}

@media screen and (max-width: 726px) {
    #footer .sub-head {
        flex-direction: column;
    }
    #footer .sub-head p {
        margin-bottom: 1rem;
        text-align: center;
    }
    
}


/* Dark Mode Styles */
body.dark-mode {
    background-color: #000;
    color: #f5f5f5;
}

#darkModeToggle {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;

    position:fixed;top:2rem;right: 50%;z-index:2000;

}

@media screen and (max-width: 1500px) {
    #darkModeToggle {
        top: 11rem;
        right: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    #darkModeToggle {
        top: 2rem;
        right: 2rem;
    }
}

#darkModeToggle img {
    width: 32px !important;
    height: 32px !important;
}

body.dark-mode #nav,
body.dark-mode #footer,
body.dark-mode #brand .logo {
    background-color: #000;
}

body.dark-mode a,
body.dark-mode #nav a {
    color: rgba(255,255,255,0.7);
}

body.dark-mode #nav a:hover,
body.dark-mode a:hover {
    color: #fff;
}

body.dark-mode #footer .sub-head,
body.dark-mode #bio .sub-head,
body.dark-mode #service-description .sub-head {
    border-top: 1px solid rgba(255,255,255,0.25);
}

body.dark-mode #service-header p,
body.dark-mode #bio .sub-head p,
body.dark-mode #footer .sub-head p,
body.dark-mode #service-description .sub-head p {
    color: #f5f5f5;
}

body.dark-mode strong {
    color: #fff;
}

body.dark-mode #bio p:first-of-type, body.dark-mode #service-description .overview p:first-of-type {
    color: #fff;
}

body.dark-mode #service-gallery .gallery-grid .grid-item,
body.dark-mode #service-gallery .gallery-grid .grid-item img {
    background: #222;
    color: #f5f5f5;
}

body.dark-mode #service-gallery .gallery-grid .grid-item:last-of-type {
    background: none;
}

body.dark-mode #service-description .overview p,
body.dark-mode .bio-description p {
    color: rgba(255,255,255,0.7);
}