html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
nav, .page-title-container, .top-section-container, .banner-section-container,
.about-section-container, .workshops-title-section-container, .workshops-section-container,
.contact-section-container {
    display: flex;
    width: 100%;
    justify-content: center;
}
.nav-container {
    display: flex;
    width: 90%;
    max-width: 1750px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 10px 0;
    z-index: 2;
}
.nav-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li a {
    font-size: 16px;
    color: #808080;
    margin: 20px;
    text-decoration: none;
    transition: 0.5s;
}
nav ul li a:hover {
    color:black;
}
.nav-container a {
    width: 140px;
}
.nav-container a img {
    width: 100%;
}
.nav-shadow {
    box-shadow: 0px 2px 12px rgba(0 0 0 / 0.2);
}
.nav-toggle {
    display: none;
}

/* Page Title */
.page-title {
    width: 90%;
    max-width: 1750px;
}
.page-title h1 {
    font-family: 'Noto Serif', serif;
    font-size: 34px;
    font-weight: 300;
}

/* Top Section */
.top-section-container {
    margin-bottom: 40px;
}
.top-section {
    width: 90%;
    max-width: 1750px;
    height: 72vh;
    background-image: url('assets/SawboneBackdropImage.png');
    background-size: cover;
    background-color: rgba(0 0 0 / 0.3);
    background-blend-mode: color;

    display: flex;
    justify-content: center;
    align-items: center;
}
.top-section span {
    max-width: 80%;
    font-size: 60px;
    color: white;
    text-align: center;
}

/* Banner Section */
.banner-section-container {
    background-color: #EFEFEF;
    margin-bottom: 40px;
}

.banner-section {
    width: 70%;
    max-width: 1334px;
    height: 18vh;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner-box {
    width: 200px;
    display: grid;
    justify-items: center;
    text-decoration: none;
    color: black;
}
.banner-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 25px;
}
.banner-text {
    text-align: center;
}
.grow-on-hover {
    transition: 0.3s;
}
.grow-on-hover:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section-container {
    margin-bottom: 40px;
}

.about-section {
    width: 90%;
    max-width: 1750px;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-section-image {
    width: 30%;
    height: 100%;
    background-image: url('assets/SurgeonsImage.jpeg');
    background-size: cover;
}
.about-section-info-container {
    width: 45%;
}
.about-title {
    font-family: 'Noto Serif', serif;
    font-size: 34px;
    font-weight: 400;
    width: 80%;
    text-align: center;
}
.about-text {
    width: 80%;
    text-align: center;
}

/* Workshops Section */
.workshops-title-section-container {
    background-color: #EFEFEF;
    margin-bottom: 80px;
}
.workshops-title-section {
    width: 90%;
    max-width: 1750px;
    height: 9vh;
}
.workshops-title {
    width: 300px;
    color: white;
    background-color: rgb(11, 118, 159);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 44px;
}
.workshops-title h1 {
    font-family: 'Noto Serif', serif;
    font-size: 34px;
    font-weight: 400;
}

.workshops-section-container {
    
}
.workshops-section {
    width: 90%;
    max-width: 1750px;
}

.workshop-container {
    background-color: #EFEFEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    margin-bottom: 40px;
}
.workshop-name-box {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: white;
    border-bottom: 1px solid black;
    margin-bottom: 40px;
}
.workshop-name {
    font-family: 'Noto Serif', serif;
    width: 95%;
    font-size: 24px;
    font-weight: 400;
}

.workshop-info-box {
    width: 95%;
    height: 27vh;
    background-size: cover;
    background-color: rgba(0 0 0 / 0.4);
    background-blend-mode: color;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 0.3);
}
.philly-backdrop {
    background-image: url(assets/phillidelphia-backdrop.jpeg);
    background-position-y: -190px;
}
.westchester-backdrop {
    background-image: url(assets/westchester-backdrop.jpg);
    background-position-y: 0px;
}
.atlanta-backdrop {
    background-image: url(assets/atlanta-backdrop.webp);
    background-position-y: -35px;
}
.baltimore-backdrop {
    background-image: url(assets/baltimore-backdrop.jpeg);
    background-position-y: -155px;
}
.winstonsalem-backdrop {
    background-image: url(assets/winstonsalem-backdrop.jpeg);
    background-position-y: -200px;
}
.workshop-location-info {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.workshop-location-text {
    font-size: 34px;
    font-weight: 400;
    color: white;
}
.workshop-action-button {
    width: 200px;
    height: 40px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    text-decoration: none;
}
.closed-action-button {
    background-color: #BABABA;
}
.workshop-coming-soon-text {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Contact Section */
.contact-section-container {
    background-color: rgb(11, 118, 159);
    margin-bottom: 40px;
}
.contact-section {
    height: 150px;
    width: 90%;
    max-width: 1750px;
    text-align: center;
    color: white;
}
.contact-section-title h1 {
    font-family: 'Noto Serif', serif;
    font-size: 34px;
    font-weight: 400;
}

/* Footer Section */
.footer-section {
    display: flow-root;
    background-color: #EFEFEF;
    text-align: center;
}

/* Back To Top Button */
.backToTopBtn {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: #cccccc;
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.backtoTopBtnIcon {
    position: absolute;
    right: 18px;
    bottom: 16px;
}
.backToTopBtn:not(:hover) {
    background: #1f1f1f;
}
.backToTopBtn:hover {
    background: #0f0f0f;
}
.backToTopBtn.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.backToTopBtn:not(.active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}  



/* Mobile CSS */
@media only screen and (max-device-width: 450px) {
    /* Body */
    body {
        font-size: 16px; /* Adjust font size for better readability */
    }

    /* Navigation */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-container ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #EFEFEF;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    .nav-container ul li {
        padding: 10px 0px;
    }
    .nav-container ul li a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px;
        margin: 0px;
    }
    .nav-container ul.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    .nav-toggle:before:hover {
        color: black;
    }
    .nav-toggle i {
        display: none;
    }
    .nav-toggle:before {
        content: "\f0c9";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 24px;
        color: #808080;
    }
    .nav-container img {
        width: 100px; /* Adjusted logo size */
    }

    /* Page Title */
    .page-title h1 {
        font-size: 28px; /* Decrease font size for better fit */
    }

    /* Top Section */
    .top-section-container {
        height: 500px;
    }
    .top-section {
        width: 100%;
        height: auto; /* Adjust height to fit content */
        background-position: center;
    }
    .top-section span {
        font-size: 24px; /* Decrease font size for better fit */
        max-width: 90%; /* Increase width for better readability */
    }

    /* Banner Section */
    .banner-section {
        /* flex-wrap: wrap; /* Allow banners to wrap to the next line */
        justify-content: center; /* Center banners */
        height: auto;
    }
    .banner-box {
        width: 150px; /* Decrease width for better spacing */
        margin: 10px; /* Add space between banners */
    }
    .banner-icon {
        font-size: 18px; /* Decrease icon size for better fit */
        width: 40px; /* Adjust icon container size */
        height: 40px;
    }
    .banner-text {
        font-size: 14px; /* Decrease font size for better fit */
    }

    /* About Section */
    .about-section-container {
        margin-bottom: 40px;
    }
    .about-section {
        flex-direction: column; /* Stack image and text vertically */
        height: auto; /* Adjust height to fit content */
    }
    .about-section-image {
        width: 111%; /* Adjust width for better fit */
        height: 300px; /* Set fixed height for image */
        margin-bottom: 20px; /* Add space between image and text */
    }
    .about-section-info-container {
        width: 100%; /* Adjust width for better fit */
        margin-bottom: 20px;
    }
    .about-title {
        font-size: 24px; /* Decrease font size for better fit */
        width: 100%;
    }
    .about-text {
        font-size: 16px; /* Decrease font size for better fit */
        width: 100%;
    }

    /* Workshops Section */
    .workshops-title-section {
        margin-top: 20px; /* Add space between title and workshops */
    }
    .workshops-title h1 {
        font-size: 28px; /* Decrease font size for better fit */
    }
    .workshops-section-container {
        margin-bottom: 20px;
    }
    .workshop-container {
        flex-direction: column; /* Stack workshop information vertically */
        align-items: center; /* Center workshop information */
        margin-bottom: 20px; /* Add space between workshops */
    }
    .workshop-name-box {
        width: 100%; /* Adjust width for better fit */
    }
    .workshop-name {
        font-size: 20px; /* Decrease font size for better fit */
    }
    .workshop-info-box {
        height: 200px;
    }
    .philly-backdrop {
        background-position-y: 0px;
    }
    .atlanta-backdrop {
        background-position-y: 0px;
    }
    .baltimore-backdrop {
        background-position-y: 0px;
    }
    .westchester-backdrop {
        background-position-y: 0px;
    }
    .winstonsalem-backdrop {
        background-position-y: 0px;
    }
    .workshop-location-text {
        font-size: 16px; /* Decrease font size for better fit */
    }
    .workshop-action-button {
        width: auto; /* Adjust width to fit content */
        padding: 10px 20px; /* Increase padding for better touch targets */
        font-size: 14px; /* Decrease font size for better fit */
    }
    .workshop-coming-soon-text {
        font-size: 14px; /* Decrease font size for better fit */
        margin-bottom: 20px; /* Add space between coming soon text */
    }

    /* Contact Section */
    .contact-section {
        height: auto; /* Adjust height to fit content */
        padding: 20px 0; /* Increase padding for better spacing */
    }
    .contact-section-title h1 {
        font-size: 24px; /* Decrease font size for better fit */
    }

    /* Footer Section */
    .footer-section {
        padding: 20px 0; /* Increase padding for better spacing */
    }

    /* Back To Top Button */
    .backToTopBtn {
        bottom: 20px; /* Adjust position for better visibility */
        right: 20px; /* Adjust position for better visibility */
        height: 40px; /* Decrease height for better fit */
        width: 40px; /* Decrease width for better fit */
        font-size: 16px; /* Decrease font size for better fit */
    }
    .backtoTopBtnIcon {
        right: 14px; /* Adjust position for better fit */
        bottom: 12px; /* Adjust position for better fit */
    }
}