body {
    margin: 0;
    padding: 0;
}

.montserrat-header {
    font-family: "Copperplate Gothic Std 31 AB", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background-color: #11151c;
    align-items: center;
    height: 11vh;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar.visible {
    transform: translateY(0);
}

.navbar div {
    color: white;
    font-size: 1.5rem;
}

.nav-left {
    margin-left: 3rem;
    cursor: pointer;
}

.nav-right {
    margin-right: 3rem;
    text-align: right;
}
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-center img {
    height: 8vh;  /* Match navbar height */
    width: auto;  /* Maintain aspect ratio */
    object-fit: contain;  /* Ensure image fits within bounds */
    max-width: 300px;  /* Prevent image from getting too wide */
    display: block;  /* Remove any extra spacing */
}


.hamburger-menu {
    width: 20px;
    height: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
}

.front-pic-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.front-page-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.overlay-text h1 {
    font-family: 'Chong Modern W01', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
}

.begin-journey-button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 15px 25px;
    margin-top: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.begin-journey-button:hover {
    background-color: white;
    color: #11151c;
}

.nav-right button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-right button:hover {
    background-color: white;
    color: #11151c;
}

.big-text-section {
    background-color: #11151c;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.big-text-section h1, h2 {
    font-family: 'Chong Modern W01', sans-serif;
}

.big-text-section h1 {
    font-size: 60px;
    margin-top: 10px;
    text-align: center;
}

.big-text-section h2 {
    font-size: 30px;
    text-align: center;
}

.book-session-button {
    background-color: #11151c;
    color: white;
    border: 1px solid white;
    margin-bottom: 40px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.book-session-button:hover {
    background-color: white;
    color: #11151c;
}

.kagami-container {
    display: flex;
    justify-content: center;
    align-items: start;
    height: auto;
    background-color: #11151c;
    flex-direction: row;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 40px;
}

.kagami-pic {
    width: 50%;
    height: auto;
    align-items: center;
    text-align: left;
}

.kagami-pic img {
    width: 90%;
    height: auto;
    object-fit: cover;
}

.kagami-info {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-top: 100px;
}

.kagami-info h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Chong Modern W01', sans-serif;
    color: white;
}

.kagami-info p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: lightgray;
    line-height: 2;
}

.kagami-info button {
    background-color: #11151c;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.kagami-info button:hover {
    background-color: white;
    color: #11151c;
}

.services-container {
    background-color: #11151c;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.one-service-container {
    flex: 1;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
}

.one-service-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-object-fit: cover;
    -webkit-object-position: center;
}

.one-service-container h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.training-plans-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #11151c;
}

.training-plans-title {
    font-size: 48px;
    font-family: 'Chong Modern W01', sans-serif;
    color: white;
    text-align: center;
}

.plans-headings {
    width: 25%;
}

.plan-title {
    font-size: 36px;
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    color: white;
    padding-top: 60px;
    text-align: center;
}

#Ronin{
    /* background-color: #191919; */
    background-color: #0d1116;
    border: 2px solid black;
}
#Musashi{
    /* background-color: #262626; */
    background-color: #090c10;
    border: 2px solid black;
}
#Samurai{
    /* background-color: #191919; */
    background-color: #05070a;
    border: 2px solid black;
}

.training-plans-table {
    border-collapse: collapse;
    color:white;
    text-align: center;
}

.plan-description {
    font-size: 18px;
    font-family: 'Chong Modern W01', sans-serif;
    color: lightgray;
    line-height: 1.2;
    margin-top: -15px;
}

.training-plans-table td, th {
    padding-top:15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    font-family: 'Chong Modern W01', sans-serif;
}

.descr_font {
    font-weight: bold;
}

.plan-price {
    font-size: 24px;
    color: white;
    font-weight: 800;
}

.plan-price-number {
    font-size: 36px;
    color: white;
    font-weight: 800;
}

.purchase-button {
    background-color:#11151c;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.purchase-button:hover {
    background-color: white;
    color: #11151c;
}

.shogun-training-plan {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(
        135deg,
        #000000,
        #111111,
        #1c1c1c,
        #111111,
        #000000
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding: 60px 0;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.9);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shogun-training-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.shogun-training-plan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.shogun-training-plan h1 {
    font-size: 42px;
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 
        0 0 1px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 215, 0, 0.3),  /* Gold glow */
        0 0 25px rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shogun-training-plan p {
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    text-align: center;
    letter-spacing: 1px;
    margin: 15px 0;
    text-shadow: 
        0 0 1px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(255, 215, 0, 0.2);  /* Subtle gold glow */
    color: #E0E0E0;
    font-size: 16px;
    max-width: 1000px;
}

.shogun-training-plan p:first-of-type {
    font-size: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.contact-container {
    width: 100%;
    background-color: #11151c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;

}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:nth-child(1),
.form-group:nth-child(2) {
    flex: 1;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
    width: 100%;
}

.contact-form label {
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.submit-button {
    width: 100%;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 15px 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: white;
    color: #11151c;
}

.contact-title {
    font-size: 48px;
    font-family: 'Chong Modern W01', sans-serif;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
}

.mobile-only {
    display: none;
}

.reviews-container {
    background-color: #11151c;
    padding: 20px 20px;
    color: white;
}

.reviews-header {
    text-align: center;
    margin-bottom: 15px;
}

.rating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.google-logo {
    height: 22px;
}

.stars {
    color: #FFC107;
    font-size: 24px;
    letter-spacing: 5px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;

}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}

.review-card {
    background-color: #1a2230;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.review-stars {
    color: #FFC107;
    font-size: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    margin-top: 0px;
}

.carousel-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.contact-form .submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.accountability-training-plan {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    border: 2px solid black;
}

.accountability-training-plan h1 {
    font-size: 36px;
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;

    color: #FFFFFF;
    font-weight: 600;
}

.accountability-training-plan p {
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    text-align: center;
    letter-spacing: 1px;
    margin: 15px 0;
    color: #E0E0E0;
    font-size: 16px;
    max-width: 1000px;
    padding: 0 20px;
}

.accountability-training-plan h3 {
    font-size: 24px;
    font-family: 'Copperplate Gothic Std 31 AB', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    margin: 10px 0;
}

.accountability-training-plan .shopify-buy__btn {
    font-family: "Montserrat, sans-serif";
    font-size: 16px;
    padding: 15px 25px;
    cursor: pointer;
    background-color: #11151c;
    color: white;
    border: 1px solid white;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 20px auto 0 auto;
    width: 80%;
    max-width: 300px;
    font-weight: normal;
    display: block;
}

.accountability-training-plan .shopify-buy__btn:hover {
    background-color: white;
    color: #11151c;
}



