/* Vars */
:root {
    --yellow: #ffed00;
    --gray: #333333;
    --dark-gray: #212529;
    --marketing-header-background: #ffed00;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
}
/* Body */
body {
    background-color: #fff;
    font-family: "Oswald", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* General Styling */
section {
    padding: 30px 10px;
}
.card-body {
    padding: 5px 15px;
}
.uppercase {
    text-transform: uppercase;
}
.underlined {
    text-decoration: underline;
    text-decoration-color: #ffed00;
}
.title {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #ffed00;
    color: var(--dark-gray);
}
.cart-card {
    background-color: #f8f8f8;
}
/* Header */
.top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-clip: border-box;
    background-color: #212529;
}
.bottom-header {
    width: 90%;
    background-color: #212529;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.bottom-header-menu-items {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
}
.bottom-header-menu-item a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px;
    color: white;
    text-decoration: underline;
    text-decoration-color: #ffed00;
    text-transform: uppercase;
}
.bottom-header-menu-item a:hover {
    color: #ffed00;
}

.shopping-cart-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    color: white;
}
.shopping-cart-container:hover {
    color: #ffed00;
}
.marketing-bottom-header {
    width: 100%;
    background-color: var(--marketing-header-background);
    color: var(--dark-gray);
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
}
.header-social-link-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    list-style: none;
    font-size: 20px;
}
.bottom-header-item .header-social-link a {
    color: white;
}
.bottom-header-item .header-social-link a:hover {
    color: var(--yellow);
}

/* Home */
/* --Hero */
.hero {
    height: 60vh;
    margin: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background-size: cover;
    filter: brightness(1);
    position: relative;
}
.hero:before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.hero-texts-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    margin: 10px;
    position: relative;
    z-index: 1;
}
.hero-texts-container a img {
    width: auto;
    height: 60px;
    margin: 10px;
    position: relative;
    z-index: 1;
}
/* --Method */
.website-method:hover {
    transition: all 0.3s ease-in-out;
}
.website-method-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 20px;
}
.website-method-container {
    display: grid;
    gap: 20px;
    margin: 25px 0;
    padding: 0 100px;
    grid-template-columns: 1fr 1fr 1fr;
}
.website-method {
    padding: 20px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: var(--yellow);
    color: var(--dark-gray);
}

.website-method h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #ffed00;
    text-align: center;
    height: 50px;
}
.website-method p {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: justify;
    padding-top: 10px;
}
.website-programs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 100px;
}
.website-program {
    display: flex;
    flex-direction: column;
    color: var(--dark-gray);
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 15px;
}
.website-program:hover {
    background-color: #f2f2f2;
    transition: all 0.3s ease-in-out;
}
.website-products {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 20px;
}
.price-tag {
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--yellow);
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 3px;
    position: absolute;
    bottom: -15px;
    left: 70%;
}
.program-image-container {
    transform-box: fill-box;
    position: relative;
}
.program-image-container img {
    border-radius: 10px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.program-info-container {
    padding: 10px;
}
.program-info-container p {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--gray);
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.program-info-additional-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 5px;
}
.program-info-additional-list li {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--gray);
    text-align: justify;
    font-weight: 700;
    padding-top: 5px;
    gap: 5px;
}
.program-info-additional-list li i {
    font-size: 20px;
    padding-right: 10px;
}
.program-info-container button {
    background-color: var(--dark-gray);
    padding: 10px 30px 10px 30px;
    color: var(--yellow);
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
}
.program-info-container button:hover {
    background-color: var(--yellow);
    color: var(--dark-gray);
}
.website-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 100px;
}
.website-member {
    display: flex;
    flex-direction: column;
    color: var(--dark-gray);
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 15px;
}
.member-image-container {
    transform-box: fill-box;
    position: relative;
}
.member-image-container img {
    border-radius: 10px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.function-tag {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--yellow);
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 1px;
    position: absolute;
    bottom: -15px;
    left: 70%;
}

.member-info-container {
    padding: 10px;
}
.member-info-container p {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--gray);
    text-align: justify;
}
.marketing-card-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}
.marketing-card-container {
    background-color: var(--dark-gray);
    color: white;
    padding: 20px 100px;
    text-align: center;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.marketing-card-container h3,
.marketing-card-container i {
    color: var(--yellow);
}

/* Programs */

/* Program */
.program-left > button {
    border: none;
    color: white;
    padding: 2px 8px;
    font-weight: 600;
    margin-right: 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.program-left > button:nth-child(1) {
    background-color: #ff592c;
}
.program-left > button:nth-child(2) {
    background-color: #45b26b;
}
.program-left h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}
.program-left p {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.3;
}
.program-left img {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.program-right {
    margin-top: 60px;
}
.description__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description__item svg {
    display: flex;
    align-items: center;
    margin: 0 10px;
    width: 18px;
}

.description__group {
    display: grid;
    grid-template-rows: 35px 35px 35px 35px;
    margin-left: -12px;
}
.description {
    margin: 25px 0;
    font-weight: 400;
    color: gray;
}
ul.description__list {
    padding: 8px;
    border-radius: 5px;
    list-style: none;
}

ul.description__list li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.description__list li:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill-rule='evenodd' d='M8.999 17.333c4.602 0 8.333-3.731 8.333-8.333S13.602.667 8.999.667.666 4.398.666 9s3.731 8.333 8.333 8.333zm4.874-10.126a1 1 0 0 0-1.414-1.414l-4.293 4.293-1.793-1.793a1 1 0 1 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l5-5z' fill='%2345b36b'/%3E%3C/svg%3E")
        no-repeat 50% 50%/100% auto;
}
.description__item > div {
    display: flex;
    align-items: center;
}
.program-right button {
    width: 100%;
    margin-top: 21px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #ffed00;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.program-right button:hover {
    background-color: #212529;
    color: white;
    transition: background-color 0.5s ease;
}
main {
    margin-top: 50px;
}
main.container {
    display: grid;
    grid-template-columns: auto 400px;
    gap: 25px;
}

/* Products */

/* Product */

/* Cart */
.shop-page {
    margin: 5px;
    padding: 5px 5px;
}

/* Footer */
footer {
    background-color: #212529;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Responsive */

/* Style inputs */
.contact-section input[type="text"],
.contact-section select,
.contact-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

.contact-section input[type="submit"] {
    background-color: var(--yellow);
    color: var(--dark-gray);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.contact-section input[type="submit"]:hover {
    background-color: var(--dark-gray);
    color: var(--yellow);
}

/* Style the container/contact section */
.contact-section .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 30px 20%;
    max-width: 100%;
}

/* Create two columns that float next to eachother */
.contact-section .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column,
    input[type="submit"] {
        width: 100%;
        margin-top: 0;
    }
}
.error-message {
    width: 100%;
    padding: 5px;
    background-color: #ff592c;
    color: white;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}
.success-message {
    width: 100%;
    background-color: #45b26b;
    color: white;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
    font-weight: 500;
}
.mobile-nav {
    display: none;
}

#menu-toggle {
    display: none;
}
.menu-icon {
    display: none;
}

.payment-logos-container img {
    width: auto;
    height: 40px;
}
.payment-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1.5em;
    margin-left: 0.3em;
    margin-right: 0.3em;
}
.bottom-header-mobile {
    display: none;
}
.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile {
        display: block;
    }
    .website-method-container,
    .website-programs,
    .website-members {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
        margin: 0;
    }
    .bottom-header-mobile {
        width: 100%;
        display: flex;
        grid-template-columns: 1fr 1fr;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        padding: 5px 40px;
    }

    .bottom-header {
        flex-direction: column;
        background-color: #151418;
        align-items: start;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
    }
    .website-method-container {
        padding: 0;
    }
    .price-tag,
    .function-tag {
        left: 65%;
        padding-left: 5px;
        padding-right: 5px;
        padding: 10px;
        font-size: 1.2rem;
        bottom: -20px;
        left: 52%;
        font-weight: 300;
    }

    .menu-icon {
        display: block;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }
    .bottom-header-menu-items {
        flex-direction: column;
        padding-left: 20px !important;
    }
    #menu-toggle:checked ~ .bottom-header {
        transform: scale(1, 1);
    }
    main.container {
        grid-template-columns: 1fr;
    }
    .program-right {
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .payment-logos-container img {
        width: auto;
        height: 30px;
    }
    .bottom-header-item {
        margin-bottom: 0;
    }
    .hero-txts {
        width: 100%;
    }
    .hero-texts-container a img {
        height: 40px;
        margin: 0;
    }
    .program-info-container {
        margin-top: 20px;
    }
    .website-method h4 {
        font-size: 1.5rem;
        text-transform: uppercase;
        text-decoration: underline;
        text-decoration-color: #ffed00;
        text-align: center;
        height: max-content !important;
    }
}

/* Checkout */

.btn-checkout {
    height: 50px;
    text-transform: uppercase;
    border: 0px;
}
.btn-checkout:hover {
    background-color: var(--yellow);
    color: var(--dark-gray);
    border: 0px;
}
/* Order Details */
.order-table {
    width: 70%;
    border-collapse: collapse;
    border: 1px solid var(--dark-gray);
    text-align: center !important   ;

    margin-top: 20px;
}
.order-table tr {
    border: 1px solid var(--dark-gray);
    text-align: center !important;
}
.order-table tr td {
    border: 1px solid var(--dark-gray);
    text-align: center !important;
}
.order-table-container {
    display: flex;
    justify-items: center;
    margin-bottom: 20px;
    width: 100%;
}
