@charset "UFT-8";
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

#container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    grid-gap: 0;
}

#container {
    display: grid;
    grid-template-rows: 80px 60vh 1fr auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-gap: 15px;
    background-color: #363636;
    box-sizing: border-box;
}

body {
    background-color: #363636;
    background: linear-gradient(0deg, #1D1D1D, #363636);
}

/* below 600px typically tablet*/
@media only screen and (max-width: 600px) {
    .logo img {
        width: 100px;
        margin-left: 15px;
        z-index: 12;
    }
    .logo {
        grid-column: 1 / 3;
        grid-row: 1;
        z-index: 10;
        margin-top: 25px;
        z-index: 12;
    }
    .logowhite img {
        width: 140px;
        z-index: 12;
    }
    .logowhite {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-top: 15px;
        margin-left: -5px;
        z-index: 12;
    }
    .profile img {
        width: 35px;
    }
    .profile {
        grid-column: 9/ 13;
        grid-row: 1;
        z-index: 10;
        margin-right: 40px;
        margin-top: 20px;
    }
    header {
        grid-row: 1;
        grid-column: 1/13;
        margin-top: 70px;
        z-index: 10;
        margin-right: 25px;
    }
    
    /* Burger Navigation */
    #nav-trigger {
        display: none;
    }
    label[for="nav-trigger"] {
        display: block;
        position: fixed;
        right: 15px;
        top: 20px;
        z-index: 200;
        cursor: pointer;
        font-family: "Allerta Stencil", sans-serif;
        color: #FCB11A;
        font-size: 16px;
        margin-top: 5px;
    }
    .navigation {
        display: flex;
        flex-direction: column;
        position: fixed;
        background: #656464;
        transition: transform 0.4s ease-in-out;
        z-index: 150;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }
    .nav-trigger:checked ~ .navigation {
        transform: translateX(-200px);
    }
    nav ul {
        list-style-type: none;
        padding: 60px 0 0;
        margin: 0;
        width: 150px;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -200px;
        background: #fff;
        z-index: 150;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }
    .navigation li {
        width: 100%;
        z-index: 150;
    }
    .navigation a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        color: white;
        text-decoration: none;
        font-family: "Allerta Stencil", sans-serif;
    }
    .navigation a:hover {
        background: #FCB11A;
        color: #fff;
    }
    .down {
        display: none;
    }
    .nav-trigger:checked ~ .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    /* Calendar Hero Section */
    .calendar-hero {
        grid-column: 1 / 13;
        grid-row: 2;
        height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .calendar-hero-bg {
        position: absolute;
        top: 0;
        width: 100%;
        height: 200px;
        background: url('../img/team9.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: 1;
        filter: brightness(50%);
    }
    .calendar-title {
        z-index: 2;
        font-size: 2.0rem;
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 133px;
        margin-bottom: 0;
    }
    .calendar-subtitle {
        z-index: 2;
        font-size: 1.0rem;
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 168px;
        margin-bottom: 0;
    }

    /* Schedule Container */
    .schedule-container {
        grid-column: 1 / 13;
        grid-row: 3;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-top: 20px;
    }
    .schedule-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        border: 2px solid #FCB11A;
        backdrop-filter: blur(10px);
    }
    .course-icon {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 15px;
    }
    .course-name {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 1.5rem;
        text-align: center;
        margin: 0 0 15px 0;
    }
    .schedule-details {
        text-align: center;
        margin-bottom: 15px;
    }
    .schedule-time, .schedule-duration, .schedule-start {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        margin: 5px 0;
        font-size: 1.0rem;
    }
    .schedule-start {
        color: #FCB11A;
        font-weight: bold;
    }
    .course-description {
        text-align: center;
    }
    .course-description p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }

    /* Calendar Notes */
    .calendar-note {
        grid-column: 1 / 13;
        grid-row: 4;
        background: rgba(252, 177, 26, 0.1);
        border: 2px solid #FCB11A;
        border-radius: 15px;
        padding: 20px;
        margin: 20px;
    }
    .calendar-note h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 1.3rem;
        margin: 0 0 15px 0;
        text-align: center;
    }
    .calendar-note ul {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
        padding-left: 20px;
    }
    .calendar-note li {
        margin-bottom: 8px;
    }

    /* CTA Section */
    .cta-section {
        grid-column: 1 / 13;
        grid-row: 5;
        text-align: center;
        padding: 20px;
        margin: 20px;
    }
    .cta-section h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 1.5rem;
        margin: 0 0 15px 0;
    }
    .cta-section p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.0rem;
        margin: 0 0 20px 0;
    }
    .cta-button {
        display: inline-block;
        background-color: #FCB11A;
        color: #363636;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-family: "Shippori Antique", sans-serif;
        font-weight: bold;
        font-size: 1.0rem;
        transition: all 0.3s ease;
    }
    .cta-button:hover {
        background-color: #b17600;
        color: #fff;
        transform: translateY(-2px);
    }
}

/* above 601px typically tablet*/
@media only screen and (min-width: 601px) {
    .logo img {
        width: 200px;
        margin-left: 30px;
        z-index: 12;
    }
    .logo {
        grid-column: 1 / 3;
        grid-row: 1;
        z-index: 10;
        margin-top: 25px;
        z-index: 12;
    }
    .logowhite img {
        width: 280px;
        z-index: 12;
    }
    .logowhite {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-top: 5px;
        margin-left: -10px;
        z-index: 12;
    }
    .profile img {
        width: 60px;
    }
    .profile {
        grid-column: 11 / 13;
        grid-row: 1;
        z-index: 10;
        justify-self: end;
        margin-right: 40px;
        margin-top: 20px;
    }
    header {
        grid-row: 1;
        grid-column: 1/13;
        margin-top: 70px;
        z-index: 10;
        margin-right: 25px;
    }
    nav ul {
        font-family: "Allerta Stencil", sans-serif;
        display: flex;
        justify-content: flex-end;
        grid-gap: 20px;
    }
    nav ul li {
        margin: 0 30px 0 0;
        display: inline;
    }
    nav ul li a {
        text-decoration: none;
        color: #FCB11A;
        font-weight: bold;
        font-size: 16px;
    }
    nav a:hover {
        background-color: #b17600;
        border: 2px solid #b17600;
        color: white;
    }
    #nav-trigger {
        display: none;
    }
    label[for="nav-trigger"] {
        display: none;
    }
    .down {
        width: 15px;
        margin-bottom: -2px;
    }

    /* Calendar Hero Section */
    .calendar-hero {
        grid-column: 1 / 13;
        grid-row: 2;
        height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .calendar-hero-bg {
        position: absolute;
        top: 0;
        width: 100%;
        height: 400px;
        background: url('../img/team2a.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        filter: blur(4px);
        z-index: 1;
        filter: brightness(50%);
    }
    .calendar-title {
        z-index: 2;
        font-size: 4.5rem;
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 250px;
        margin-bottom: 0;
    }
    .calendar-subtitle {
        z-index: 2;
        font-size: 1.5rem;
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 335px;
        margin-bottom: 0;
    }

    /* Schedule Container */
    .schedule-container {
        grid-column: 1 / 13;
        grid-row: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px;
        margin-top: 20px;
    }
    .schedule-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 30px;
        border: 3px solid #FCB11A;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .schedule-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(252, 177, 26, 0.3);
    }
    .course-icon {
        font-size: 4rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .course-name {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 2.0rem;
        text-align: center;
        margin: 0 0 20px 0;
    }
    .schedule-details {
        text-align: center;
        margin-bottom: 20px;
    }
    .schedule-time, .schedule-duration, .schedule-start {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        margin: 8px 0;
        font-size: 1.2rem;
    }
    .schedule-start {
        color: #FCB11A;
        font-weight: bold;
        font-size: 1.1rem;
    }
    .course-description {
        text-align: center;
    }
    .course-description p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.0rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Calendar Notes */
    .calendar-note {
        grid-column: 2 / 12;
        grid-row: 4;
        background: rgba(252, 177, 26, 0.1);
        border: 3px solid #FCB11A;
        border-radius: 20px;
        padding: 30px;
        margin: 30px 0;
    }
    .calendar-note h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 1.8rem;
        margin: 0 0 20px 0;
        text-align: center;
    }
    .calendar-note ul {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8;
        margin: 0;
        padding-left: 30px;
    }
    .calendar-note li {
        margin-bottom: 12px;
    }

    /* CTA Section */
    .cta-section {
        grid-column: 3 / 11;
        grid-row: 5;
        text-align: center;
        padding: 30px;
        margin: 30px 0;
    }
    .cta-section h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 2.0rem;
        margin: 0 0 20px 0;
    }
    .cta-section p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.2rem;
        margin: 0 0 25px 0;
    }
    .cta-button {
        display: inline-block;
        background-color: #FCB11A;
        color: #363636;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-family: "Shippori Antique", sans-serif;
        font-weight: bold;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    .cta-button:hover {
        background-color: #b17600;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(252, 177, 26, 0.4);
    }
}

/* above 1025px typically desktop*/
@media only screen and (min-width: 1025px) {
    .logo img {
        width: 200px;
        margin-left: 30px;
        z-index: 12;
    }
    .logo {
        grid-column: 1 / 3;
        grid-row: 1;
        z-index: 10;
        margin-top: 25px;
        z-index: 12;
    }
    .logowhite img {
        width: 280px;
        z-index: 12;
    }
    .logowhite {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-top: 5px;
        margin-left: -10px;
        z-index: 12;
    }
    .profile img {
        width: 60px;
    }
    .profile {
        grid-column: 11 / 13;
        grid-row: 1;
        z-index: 10;
        justify-self: end;
        margin-right: 40px;
        margin-top: 20px;
    }
    header {
        grid-row: 1;
        grid-column: 1/13;
        margin-top: 70px;
        z-index: 10;
        margin-right: 25px;
    }
    nav ul {
        font-family: "Allerta Stencil", sans-serif;
        display: flex;
        justify-content: flex-end;
        grid-gap: 20px;
    }
    nav ul li {
        margin: 0 30px 0 0;
        display: inline;
    }
    nav ul li a {
        text-decoration: none;
        color: #FCB11A;
        font-weight: bold;
        font-size: 16px;
    }
    nav a:hover {
        background-color: #b17600;
        border: 2px solid #b17600;
        color: white;
    }
    #nav-trigger {
        display: none;
    }
    label[for="nav-trigger"] {
        display: none;
    }
    .down {
        width: 15px;
        margin-bottom: -2px;
    }

    /* Calendar Hero Section */
    .calendar-hero {
        grid-column: 1 / 13;
        grid-row: 2;
        height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .calendar-hero-bg {
        position: absolute;
        top: 0;
        width: 100%;
        height: 500px;
        background: url('../img/team2a.jpg') center center fixed;
        background-size: cover;
        filter: blur(4px);
        z-index: 1;
        filter: brightness(50%);
    }
    .calendar-title {
        z-index: 2;
        font-size: 7.3rem;
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 255px;
        margin-bottom: 0;
    }
    .calendar-subtitle {
        z-index: 2;
        font-size: 2.0rem;
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        text-align: center;
        grid-column: 2/12;
        grid-row: 2;
        margin-top: 438px;
        margin-bottom: 0;
    }

    /* Schedule Container */
    .schedule-container {
        grid-column: 2 / 12;
        grid-row: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 50px;
        margin-top: 30px;
    }
    .schedule-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 40px;
        border: 3px solid #FCB11A;
        backdrop-filter: blur(15px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .schedule-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(252, 177, 26, 0.4);
    }
    .course-icon {
        font-size: 5rem;
        text-align: center;
        margin-bottom: 25px;
    }
    .course-name {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 2.5rem;
        text-align: center;
        margin: 0 0 25px 0;
    }
    .schedule-details {
        text-align: center;
        margin-bottom: 25px;
    }
    .schedule-time, .schedule-duration, .schedule-start {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        margin: 10px 0;
        font-size: 1.4rem;
    }
    .schedule-start {
        color: #FCB11A;
        font-weight: bold;
        font-size: 1.3rem;
    }
    .course-description {
        text-align: center;
    }
    .course-description p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Calendar Notes */
    .calendar-note {
        grid-column: 3 / 11;
        grid-row: 4;
        background: rgba(252, 177, 26, 0.1);
        border: 3px solid #FCB11A;
        border-radius: 25px;
        padding: 40px;
        margin: 40px 0;
    }
    .calendar-note h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 2.2rem;
        margin: 0 0 25px 0;
        text-align: center;
    }
    .calendar-note ul {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.3rem;
        line-height: 2.0;
        margin: 0;
        padding-left: 40px;
    }
    .calendar-note li {
        margin-bottom: 15px;
    }

    /* CTA Section */
    .cta-section {
        grid-column: 4 / 10;
        grid-row: 5;
        text-align: center;
        padding: 40px;
        margin: 40px 0;
    }
    .cta-section h3 {
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
        font-size: 2.5rem;
        margin: 0 0 25px 0;
    }
    .cta-section p {
        font-family: "Shippori Antique", sans-serif;
        color: #fff;
        font-size: 1.4rem;
        margin: 0 0 30px 0;
    }
    .cta-button {
        display: inline-block;
        background-color: #FCB11A;
        color: #363636;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-family: "Shippori Antique", sans-serif;
        font-weight: bold;
        font-size: 1.4rem;
        transition: all 0.3s ease;
    }
    .cta-button:hover {
        background-color: #b17600;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(252, 177, 26, 0.5);
    }
}

/* Footer */
footer {
    font-family: "Shippori Antique", sans-serif;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    grid-column: 1/13;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(0deg, #1D1D1D, #363636);
}

.contact h3 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-family: "Archivo Black", sans-serif;
    color: #FCB11A;
}

.contact address {
    font-style: normal;
    line-height: 2.5;
    font-size: 0.8rem;
}

.footersocial {
    display: flex;
    justify-content: center;
    grid-gap: 115px;
    margin-top: 55px;
    margin-bottom: 40px;
}

.footerins,
.footerfacebook,
.footerred {
    width: 35px;
    height: auto;
}

footer a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

@media only screen and (min-width: 601px) {
    .contact h3 {
        margin-bottom: 25px;
        font-size: 1.4rem;
        font-family: "Archivo Black", sans-serif;
        color: #FCB11A;
    }
    
    .contact address {
        font-style: normal;
        line-height: 2.5;
    }
    
    .footersocial {
        display: flex;
        justify-content: center;
        grid-gap: 125px;
        margin-top: 55px;
        margin-bottom: 40px;
    }
    
    .footerins,
    .footerfacebook,
    .footerred {
        width: 55px;
        height: auto;
    }
}
