html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    margin: 0px;
    border: 0px;
    width: 100%;
}

/* Nav */
nav, .page-title-container, .info-section-container, .recent-work-container,
.footer-container {
    display: flex;
    width: 100%;
    justify-content: center;
}
nav a {
    width: 175px;
}
nav a img {
    width: 100%;
    margin-left: -18px;
}
.nav-container {
    display: flex;
    width: 85%;
    justify-content: space-between;
    align-items: center;
    height: 175px;
    padding: 10px 0px;
}
.email-header-link a {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

/* Title Section */
.page-title-section {
    display: flex;
    flex-direction: column;
    width: 85%;
}
.page-title-section .tagline1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 25px;
    opacity: 1;
}
.page-title-section .tagline2 {
    color: white;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 95px;
    line-height: 103px;
    margin-left: -4px;
}
.color-italic {
    color: rgb(255, 69, 1);
    font-style: italic !important;
    font-weight: bold !important;
}

/* Glide Carousel */
.carousel-container {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    cursor: grab;
}
.carousel-container:active {
    cursor: grabbing;
}
.glide__track {
    overflow: visible !important;
}
.glide__slides {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 8vw;
    cursor: grab;
}
.glide__slides:active {
    cursor: grabbing;
}
.glide__slide {
    flex: 0 0 26vw;
    width: 500px;
    height: 500px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}
.glide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.glide__arrows {
    text-align: center;
    margin-top: 15px;
    display: none;
}
.glide__arrow {
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

/* Info Section */
.info-section-container {
    background-color: white;
}
.info-section {
    display: flex;
    width: 50%;
    padding: 115px 0px;
}
.info-section span {
    font-family: "p22-mackinac-pro", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
}

/* Recent Work Section */
.recent-work-section {
    display: flex;
    flex-direction: column;
    width: 85%;
    padding-top: 100px;
}
.recent-work-title {
    color: white;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 500;
    font-style: italic;
    font-size: 53px;
    margin-bottom: 20px;
}
.recent-work-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 100px;
}
.recent-work-box img {
    border-radius: 6px;
    margin-bottom: 10px;
    width: 100% !important;
    height: auto;
}
.recent-work-box-title {
    color: white;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    margin-bottom: 5px;
}
.recent-work-box-info {
    color: white;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Footer Section */
.footer-section {
    display: flex;
    width: 85%;
    padding-bottom: 50px;
    justify-content: space-between;
    align-items: center;
}
.footer-logo-box {
    display: flex;
    flex-direction: column;
}
.footer-logo-box img {
    width: 125px;
    height: auto;
    margin-left: -12px;
}
.footer-email-link {
    color: rgb(255, 69, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
}
.footer-small-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: white;
}
.social-icon {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    color: rgb(255, 69, 1);
}
.footer-info {
    max-width: 500px;
}
.bold-color {
    color: rgb(255, 69, 1);
    font-weight: bold;
}


/* Media Queries */
@media screen and (max-width: 768px) {
    .carousel-container {
        padding: 40px 0;
        overflow: hidden;
    }

    /* Slides */
    .glide__slides {
        padding: 0 25vw;
        gap: 50px;
        justify-content: center;
    }

    .glide__slide {
        flex: 0 0 80vw;
        width: 85vw;
        height: auto;
        transition: transform 0.4s ease-in-out;
    }

    .glide__slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .glide__arrows {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .glide__arrow {
        display: inline-block;
        font-size: 24px;
        padding: 12px 18px;
        background: none;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }

    /* Nav */
    nav a {
        width: 130px;
    }
    nav a img {
        margin-left: -13px;
    }

    /* Title Section */
    .page-title-section .tagline1 {
        margin-bottom: 15px;
    }
    .page-title-section .tagline2 {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 30px;
    }

    .page-title-section .tagline2 .mobile-hide {
        display: none;
    }

    /* Info Section */
    .info-section {
        width: 85%;
    }
    .info-section span {
        font-size: 20px;
    }

    /* Recent Work Section */
    .recent-work-section {
        padding-top: 70px;
    }
    .recent-work-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    .recent-work-box {
        margin-bottom: 50px;
    }
    .recent-work-box-title, .recent-work-box-info {
        font-size: 16px;
    }

    /* Footer Section */
    .footer-section {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo-box {
        align-items: center;
        margin-bottom: 30px;
    }
    .social-icon {
        margin-bottom: 30px;
    }
    .footer-email-link {
        font-size: 12px;
        margin-bottom: 10px;
    }

}
