@font-face {
    font-family: "Classica-Book";
    src: url("../fonts/Classica-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Classica-Bold";
    src: url("../fonts/Classica-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Metropolis-Regular";
    src: url("../fonts/Metropolis-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-primary-dark: #233030;
    --color-primary-light: #415e60;

    --text-color-dark: black;
    --text-color-light: #e0e0e0;
    --text-color-light-2: #e0d7cf;

    --font-size-title: 3rem;
    --font-size-bodyLarger2x: 2.5rem;
    --font-size-bodyLarger: 1.5rem;
    --font-size-medium: 1.25rem;
    --font-size-body: 1rem;
    --font-size-small: 1rem;
    --font-size-smaller: 0.75rem;

    --font-heading: "Classica-Book", sans-serif;
    --font-body: "Metropolis-Regular", sans-serif;
}

* {
    font-family: var(--font-body);
    /* color: var(--text-color-light-2); */
    letter-spacing: 2px;
}

.preview {
    max-width: 200px;
    max-height: 200px;
}

/* Text */
.title {
    font-size: var(--font-size-title);
    font-weight: bold;
    font-family: var(--font-heading);
}

.subtitle {
    font-size: var(--font-size-small);
    font-family: var(--font-heading);
}

.text {
    font-size: var(--font-size-body);
}

.text.small {
    font-size: var(--font-size-smaller);
}

.text.medium {
    font-size: var(--font-size-medium);
}

.text.large {
    font-size: var(--font-size-bodyLarger);
    font-family: "Classica-Bold", sans-serif;
}

.text.large2x {
    font-size: var(--font-size-bodyLarger2x);
    font-family: "Classica-Bold", sans-serif;
}

.bold {
    font-weight: bold;
}

.text-light {
    color: var(--text-color-light);
}

.text-dark {
    color: var(--color-primary-dark);
}

.text-red {
    color: red;
}

.justified {
    text-align: justify;
    text-justify: inter-word;
}

/* Text */

/* Tabs */

.tabs {
    margin: 2rem 0 1rem;
    text-align: center;
}

.tab {
    padding: 0 1rem;
    cursor: pointer;
    background-color: transparent;
    opacity: 0.5;
    border: none;
}

.tab:hover {
    opacity: 0.75;
    color: var(--color-primary-dark);
}

.tab.active {
    opacity: 1;
    font-size: larger;
    color: var(--color-primary-dark);
    font-family: "Classica-Bold", sans-serif;
}

.grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.grid .grid-item {
    /* width: 100%; */
    position: relative;
    overflow: hidden;
    /* width: calc(50% - 8px); */
}

/* Tabs */

/* Toggle Switch */

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-switch-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #ccc;
    transition: background-color 0.3s ease-in-out;
}

.toggle-switch-handle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.toggle-switch::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -35px;
    font-size: 12px;
    font-weight: bold;
    color: #aaa;
    text-shadow: 1px 1px #fff;
    transition: color 0.3s ease-in-out;
}

.toggle-switch input[type="checkbox"]:checked+.toggle-switch-handle {
    transform: translateX(45px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 3px #05c46b;
}

.toggle-switch input[type="checkbox"]:checked+.toggle-switch-background {
    background-color: #05c46b;
    box-shadow: inset 0 0 0 2px #04b360;
}

.toggle-switch input[type="checkbox"]:checked+.toggle-switch:before {
    content: "On";
    color: #05c46b;
    right: -15px;
}

.toggle-switch input[type="checkbox"]:checked+.toggle-switch-background .toggle-switch-handle {
    transform: translateX(30px);
}

/* Toggle Switch */

/* Schedule */

.schedule-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.schedule-card {
    padding: 2rem 2rem;
    background-color: var(--color-primary-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--text-color-light-2);
    min-height: 23rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .text.large {
        letter-spacing: 1px !important;
    }
}

.schedule-card .coach {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
}

.circle {
    width: 44px;
    /* Adjust size as needed */
    height: 44px;
    /* Adjust size as needed */
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    cursor: pointer;
}

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

/* Schedule */