* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

@font-face {
    font-family: 'M';
    src: url(fnts/Montserrat-Italic-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Blank';
    src: url(fnts/Blank\ River.ttf);
}

@font-face {
    font-family: 'Black';
    src: url(fnts/ArchivoBlack-Regular.ttf);
}

@font-face {
    font-family: 'Delirium';
    src: url(fnts/DELIRIUM\ NCV.ttf)
}

@font-face {
    font-family: 'OTF';
    src: url(fnts/Fontspring-DEMO-integralcf-bold.otf);
}

body {
    background-color: rgb(0, 0, 0);
    font-family: 'OTF';    
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}



a:hover {
    color: gold;
}

.off-screen-menu {
    background-color: black;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    z-index: 2000;
}

.off-screen-menu.active {
    right: 0;
}

.nav-container {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}

nav {
    padding: 1rem;
    display: flex;
    background-color: black;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px gold solid;
}

.ham-menu { 
    height: 50px;
    width: 8%;
    margin-left: auto;
    position: relative;
    z-index: 2001;
    cursor: pointer;
    order: 2;
}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: white;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.Functional-Logo {
    box-sizing: border-box;
    width: 5%;
    height: auto;
    max-width: 100%;
    position: relative;
    left: 1%;
    z-index: 2;
    cursor: pointer;
    order: 1;
}

/*Index Page CSS*/
.BC{
    height: 100vh;
    width: 100vw;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
   background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.95)),
    url("img/Functional Fitness Group Image.jpg");
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.functional-container{
    height: 20vh;
    width: 50vw;
    font-family: 'M' sans-serif;
    color:white;
    font-size: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saying-container{
    height: 20vh;
    width: 70vw;
    font-family: 'M' sans-serif;
    color:white;
    font-size: 6rem;
    margin-bottom: 60px;
}

.second-saying-container{
    height: 20vh;
    width: 50vw;
    color: lightgrey;
    font-family: 'M';
    font-size: 2rem;
    justify-content: center;
    display: flex; 
    align-items: center;
}

.home-buttons-container{
    height: 20vh;
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;  
    gap: 20px;
    align-items: center;
}

.journey{
    background-color: gold;
    border-radius: 5px;
    height: 50px;
    width: 250px;
    font-family: 'M' sans-serif;
    font-size: 1rem;
    border: 0;
    font-weight: bold;
}

.journey:hover{
    filter: brightness(.8);
}

.programs:hover{
background-color: gold;
color: black;
}

.programs{
     background-color: black;
    border-radius: 5px;
    height: 50px;
    width: 250px;
    font-family: 'M' sans-serif;
    font-size: 1rem;
    border: 0;
    color: gold;
    border: 2px gold solid;
font-weight: bold;
}

.secondary-section{
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.why-container{
    color: white;
    font-family: 'Black'  ;
    font-size: 3rem;
    text-transform: uppercase;
}



.saying2-container{
    height: 10vh;
    width: 50vw;
    color: lightgrey;
    font-family: 'M';
    font-size: 1.2rem;
    justify-content: center;
    display: flex; 
    align-items: center;
}

.cards-container{
    width: 90vw;
    height: 50vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.functional-cards{
    border: 2px gold solid;
    border-radius: 10px;
    height: 330px; 
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px; 
    padding: 40px 30px; /
}

.card-image{
    background-color: rgba(255, 215, 0, 0.15);
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    margin-top: 0; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.gold-text{
    color: gold;
}

.gold-icon{
    color: gold;
    font-size: 3rem; 
}

.gold-icon2{
      color: gold;
    font-size: 2.5rem; 
}

.whitetextcard{
    color: white;
    font-family: 'Black';
    font-size: 1.5rem;
    text-align: center; 
    margin: 0; 
}

.textcard{
    width: 100%; 
    text-align: center; 
    margin-bottom: 0; 
}

.greytextcard{
    color: #9ca3af; 
    font-family: 'M';
    font-size: 1rem;
    line-height: 1.5; 
    text-align: left; 
    font-style: italic; 
}

.third-section{
     height: 120vh;
    width: 100vw;
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
}

.program-cards{
      border: 2px gold solid;
   height: 500px;
      width: 350px;
    display: flex;
    flex-direction: column;
    margin-top: 200px;
    border-radius: 10px;
    overflow: hidden;   
    gap: 20px; 
}

.program-images{
    width: 350px;
    height: 280px;
    
    object-fit: cover;
    border-radius: 1px white solid;
    overflow: hidden;
}

.program-images img{
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.program-text{
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    gap: 10px;
}

.program-text2{
    display: flex;
    
}

.program-button{
     background-color: gold;
    color: black;
    border: none;
    width: 85%;
    padding: 15px;
    height: 40px;
    border-radius: 10px;
    font-family: 'M' sans-serif;
    font-size: 1.1rem;
    margin: 20px auto; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.program-buttons-container{
    height: 20vh;
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;  
    gap: 20px;
    align-items: center;
    margin-top: 130px;
}

.view-programs{
    background-color: gold;
    border-radius: 8px;
    height: 55px;
    width: 280px;
    font-family: 'Black';
    font-size: 1.1rem;
    border: 0;
    font-weight: bold;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-programs:hover{
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}


.fourth-section{
     height: 90vh;
    width: 100vw;
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
}


.card-story-container{
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
}

.story-cards{
    border: 2px gold solid;
    border-radius: 15px;
    height: auto;
    min-height: 330px;
    width: 400px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    background-color: black;
}

.star-container{
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    gap: 5px;
    padding: 0;
}

.star-icon{
    color: gold;
    font-size: 1.8rem;
}

.quote-container{
    height: auto;
    width: 100%;
    color: white;
    font-family: 'M';
    font-style: italic;
    text-align: left;
    line-height: 1.6;
    padding: 0;
    font-size: 1.05rem;
}

.member-container{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.initial-container{
    height: auto;
    width: auto;
    display: flex;
    flex-shrink: 0;
}

.initials{
    background-color: rgba(255, 215, 0, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Black';
    font-size: 1.3rem;
    font-weight: bold;
    color: gold;
}

.member-info{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 2px;
}

.membername{
    color: white;
    font-family: 'Black';
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0;
}

.memberdate{
    color: #999;
    font-family: 'M';
    font-size: 0.9rem;
    margin: 0;
}
.story-quote{
    color: white;
}

.story-image{
    background-color: rgba(255, 215, 0, 0.15);
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    margin-top: 0; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* CTA Section - Base styles */
.fifth-section{
    min-height: 60vh;
    width: 100vw;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.action-container{
    border: 2px gold solid;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    gap: 30px;
}

.action-container2{
    border: 2px gold solid;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    gap: 30px;
}


.calltoaction-container{
    color: white;
    font-family: 'Black';
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
}

.call-container{
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}

.call-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.journey-info{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.call-container-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-container{
    width: 100%;
    background-color: black;
    border-top: 2px gold solid;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px 40px 20px;
}

.footercontent-container{
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.gymname-container{
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gymname-container .membername{
    color: white;
    font-family: 'Black';
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 0;
}

.gymname-container .memberdate{
    color: #999;
    font-family: 'M';
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.quicklinks-container{
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quicklinks-container .membername{
    color: white;
    font-family: 'Black';
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.footertext{
    color: #999;
    font-family: 'M';
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.regulartext{
    color: #999;
    font-family: 'M';
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;}

.footertext:hover{
    color: gold;
}

.reachout-container{
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reachout-container .membername{
    color: white;
    font-family: 'Black';
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.followus-container{
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.followus-container .membername{
    color: white;
    font-family: 'Black';
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}


.footer-copyright{
    padding: 20px 1rem;
    display: flex;
    background-color: black;
    width: 100%;
    border-top: 1px solid #FFE66D;;
    justify-content: center;
    align-items: center;
}

.footer-copyright p{
    color: #666;
    font-family: 'M';
    font-size: 0.9rem;
    margin: 0;
}

/*End Index Page CSS*/

/* Membership Tab CSS */

.cardgroup {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.card-text {
    font-size: clamp(1rem, 2vw, 2em);
    color: white;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    text-align: center;
}

.card-text:hover {
    color: gold;
    transition: 1s;
    cursor: pointer;
}


.Membership {
    color: white;
    font-size: 4rem;
    font-family: 'Black';
    text-transform: uppercase;
}

.Options {
    color: gold;
    font-size: 4rem;
    font-family: 'Black';
    text-transform: uppercase;
}

.Membership-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 150px;
    gap: 15px;
}

.Cards {
    background-color: rgb(0, 0, 0);
    width: 30%;
    height: 40rem;
    border-radius: 10px;
    margin: 20px 10px;
    border: solid 1px gold;
    position: relative;
    align-items: center;
}

#card2 {
    background-color: rgb(0, 0, 0);
    width: 30%;
    height: 37rem;
    border-radius: 10px;
    margin: 20px 10px;
    border: solid 1px white;
    position: relative;
    align-items: center;
    gap: 20px;
}

.barbell {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cardstext {
    font-family: 'Black';
    text-align: center;
    font-size: 2rem;
    color: gold;
    justify-content: center;
    align-items: center;
}

.List {
    font-family: 'Black';
    z-index: 5;
    font-size: clamp(.5rem, 3vw, 1.8rem);
    gap: 70px;
    position: relative;
    list-style-type: none; 
    display: flex;
    flex-direction: column;
    bottom: -30px;
    text-align: center;
    justify-content: center;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.listtext {
    font-family: 'M';
    color: white;
}

.checkmark {
    display: inline-block;
    width: clamp(6px, 3vw, 10px);
    height: clamp(2px, 3vw, 20px);
    border-bottom: 5px solid gold;
    border-right: 5px solid gold;
    transform: rotate(45deg);
    flex-shrink: 0; 
    margin-bottom: 5px; 
}

.container {
    color: white;
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.black-text {
    font-family: 'M';
    font-size: clamp(1rem, 3vw, 2rem);
    text-align: center;
}

.black-text:hover {
    color: gold;
    transition: 2s;
    cursor: pointer;
}

/* Personal Training */

.personal-training {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.Trainers {
    height: clamp(7rem, 55vw, 30rem);
    width: clamp(7rem, 55vw, 30rem);
    z-index: 2;
    position: absolute;
    top: clamp(10rem, 10vw, 10rem);
}
 
.Trainers img {
    width: 100%;
    height: 100%;
    filter: brightness(.6);
    border-radius: 20px;
}

.james {
    object-fit: cover;
}

.parent-container {
    width: 100vw;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    gap: 20px;
}

.trainer-cards {
    min-height: 75vh;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 15px;
    align-items: center;
    gap: 20px;
}

.headshot {
    width: clamp(152px, 15vw, 224px);
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    object-fit: cover;
}

.trainer-text {
    color: gold;
    font-size: clamp(.5rem, 3vw, 2rem);
    font-family: 'Black';
    text-transform: uppercase;
}

.text-container {
    height: 25%;
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container-text {
    color: white;
    font-size: clamp(.25rem, 3vw, 1.25rem);
    font-family: 'M';
}

/* Gym CSS */
.gym-container{
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.gym-cards {
    border: 2px solid #FFD700;
    border-radius: 15px;
    min-height: 330px;
    width: 350px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gym-cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.gymcard-image {
    background-color: rgba(255, 215, 0, 0.15);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.trainers-section {
    min-height: 100vh;
    width: 100%;
    background-color: #000;
    padding: 120px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.trainers-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
    padding: 0 20px;
}

.trainer-card {
    background-color: #000;
    border: 2px solid #FFD700;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.trainer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-info {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #000;
}

.trainer-name {
    font-family: 'Black', Arial, sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: bold;
}

.trainer-title {
    font-family: 'Black', Arial, sans-serif;
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

.trainer-description {
    font-family: 'M', Arial, sans-serif;
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 8px 0 16px 0;
    font-style: italic;
}

.trainer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.tag {
    background-color: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'M', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #FFD700;
    color: #000;
    transform: scale(1.05);
}


/* End of Our Gym CSS */

/* Contact Page CSS */
.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.contact-container {
    height: 35vh;
    width: 45%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.contactheader {
    font-family: 'Black';
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-left: 50px;
}

.premiertext {
    font-family: 'Black';
    color: white;
    font-size: 3rem;
    padding-left: 50px;
}

.premiertext2 {
    font-family: 'Black';
    color: black;
    font-size: 3rem;
    padding-left: 50px;
    margin-top: 60px;
}

.subtext {
    font-family: 'M';
    color: white;
    font-size: 1rem;
    padding-left: 50px;
}

.subtext2 {
    font-family: 'M';
    color: grey;
    font-size: 1.3rem;
    padding-left: 50px;
}

.second-container {
    width: 100%;
    height: 200vh;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0px;
}

.tab-wrapper {
    height: 50vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.contacttabs {
    border: .5px grey solid;
    height: 25%;
    width: 35%;
    padding-left: 25px;
    text-align: left;
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
    margin-left: 110px;
    margin-top: 45px;
    border-radius: 10px;
    gap: 10px;
    left: 8%;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.lowertext {
    font-family: 'M';
    font-size: 1rem;
}

.toptext {
    color: black;
}

.tab-icon {
    width: 30px;
    aspect-ratio: 1/1;
}

.message-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.map-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 38%;
    height: 50%;
    margin-top: 80px;
}

iframe {
    border-radius: 20px;
    border-color: black;
    border: 2px solid;
    width: 500px;
    height: 500px;
    margin-top: 60px;
    filter: brightness(.8);
    transition: .3s ease-in-out;
}

iframe:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

.email-container {
    margin-top: 80px;
    width: 65%;
    min-height: 50%;
    margin-left: 40px;
    text-align: left;
    justify-content: flex-start;
    gap: 20px;
}

.emailheadertext {
    font-family: 'M';
    font-size: 1.8rem;
    color: black;
    margin-bottom: 30px;
}

.emailsubtext {
    font-family: 'M';
    color: grey;
    font-size: 1rem;
}

.Contact-Form {
    width: 60%;
    height: 200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
}

.Message-Box {
    width: 60%;
    height: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
}

.Info-Tabs {
    border: .5px gray solid;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    background-color: white;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.formtext {
    font-family: 'M';
    color: black;
    font-size: 1rem;
    margin-bottom: 12px;
}

.message-group {
    width: 100%; 
}

.message-box {
    width: 100%;
    height: 150px; 
    padding: 12px;
    resize: vertical; 
    font-family: 'M', sans-serif;
}

.send-btn {
    background-color: black;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'M';
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content; 
    margin-top: 1px;
}

.send-btn:hover {
    background-color: gold;
    color: black;
}

input.Info-Tabs, 
textarea.Info-Tabs {
    border: .5px gray solid;
    background-color: white;
    padding: 10px;
    font-family: 'M';
    outline: none; 
}

input.Info-Tabs:focus, 
textarea.Info-Tabs:focus {
    border: 1px solid gold; 
}

.success-message {
    display: none; 
    background-color: #f0fff4; 
    border: 1px solid #c6f6d5;
    color: #2f855a;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-family: 'M';
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* END CONTACT CSS PAGE */


/*Store CSS*/
.store-container {
    height: 35vh;
    width: 45%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
}

.storeheader {
    font-family: 'Black';
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-left: 50px;
}

.storetext {
    font-family: 'Black';
    color: white;
    font-size: 3rem;
    padding-left: 50px;
}

.storetext2 {
    font-family: 'Black';
    color: white;
    font-size: 2rem;
    padding-left: 50px;
    margin-top: 60px;
}

.storesubtext {
    font-family: 'M';
    color: white;
    font-size: 1.3rem;
    padding-left: 50px;
}

.storesubtext2 {
    font-family: 'M';
    color: grey;
    font-size: 1.3rem;
    padding-left: 50px;
}

.storesecond-container {
    width: 100%;
    height: 200vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0px;
    margin-top: 40px;
}

.storetab-wrapper {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.storetabs {
    border: 2px gold solid;
    width: 350px;
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;       
}

.storeimage{
    width: 350px;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
}

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

.storetabtext {
    width: 100%;     
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;      
    padding-bottom: 20px;   
    border-radius: 10px;
}

.st {
    font-family: 'Black';
    color: white;
    font-size: 1.5rem;
    padding: 0 30px;        
    margin-top: 20px;       
}

.money {
    font-family: 'Black';
    color: gold;
    font-size: 2.2rem;       
    padding-left: 30px;
    margin-top: 10px;        
}

.product-details {
    margin: 15px 30px;
    font-family: 'M', sans-serif;
    color: gold;         
    cursor: pointer;
}

.product-details summary {
    list-style: none;      
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.product-details summary::-webkit-details-marker {
    display: none;
}

.product-details summary::before {
    content: '⌵'; 
    font-size: 1.2rem;
    font-weight: bold;
    color: gold;
    transition: .2s;
}

.product-details[open] summary::before{
    content: '⌃';
}

.product-details .hide-text { 
    display: none; 
}
.product-details[open] .see-text { 
    display: none; 
}
.product-details[open] .hide-text { 
    display: inline; 
}

.details-content {
    background-color: #111; 
    border: 1px solid #333; 
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    width: calc(100% - 60px); 
    margin-left: auto;        
    margin-right: auto;
}

.details-content p {
    color: #ccc;
    font-family: 'M';
    font-size: .9rem;
    line-height: 1.4;
    padding: 0;
}

.plan-descript {
    font-family: 'M';
    color: #888;         
    font-style: italic;
    padding: 0 30px;
    margin-top: 10px;
}

.see-text, .hide-text {
    color: gold; 
    font-family: 'M';
    font-weight: bold;
}

.add-to-cart{
    background-color: gold;
    color: black;
    border: none;
    width: 85%;
    padding: 15px;
    height: 40px;
    border-radius: 10px;
    font-family: 'M' sans-serif;
    font-size: 1.1rem;
    margin: 20px auto; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover{
    background-color: #ffd700;
}

/* Shopping Cart Styles */
.shopping-cart-container {
    position: fixed;
    top: 43px;
    right: 100px;
    z-index: 1000;
}

.cart-icon {
    background-color: gold;
    color: black;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Black';
    transition: background-color 0.3s ease;
    border: 2px solid gold;
    height: 15px;
}

.cart-icon:hover {
    background-color: #ffd700;
}

.cart-count {
    background-color: black;
    color: gold;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.cart-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #111;
    border: 2px solid gold;
    border-radius: 15px;
    padding: 20px;
    min-width: 350px;
    max-width: 400px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.cart-dropdown.show {
    display: block;
}

.cart-dropdown h3 {
    color: gold;
    font-family: 'Black';
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid gold;
}

.empty-cart {
    color: #888;
    font-family: 'M';
    text-align: center;
    padding: 20px;
}

.cart-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    color: white;
    font-family: 'Black';
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.cart-item-info p {
    color: gold;
    font-family: 'M';
    font-size: 1.1rem;
    margin: 0;
}

.remove-item {
    background-color: transparent;
    color: #ff4444;
    border: 1px solid #ff4444;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'M';
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background-color: #ff4444;
    color: white;
}

.checkout-btn {
    background-color: gold;
    color: black;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Black';
    font-size: 1.1rem;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #ffd700;
}
/*End Store CSS*/




/* Media Queries */

@media (max-width: 1024px) {
    /* Hero Section */
    .functional-container {
        font-size: 2.5rem;
        width: 70vw;
    }

    .saying-container {
        font-size: 4.5rem;
        width: 80vw;
    }

    .second-saying-container {
        font-size: 2rem;
        width: 70vw;
        margin-bottom: 100px;
    }

    .home-buttons-container {
        width: 70vw;
    }

    .journey, .programs {
        width: 200px;
        height: 45px;
        font-size: 0.9rem;
    }

    /* Why Choose Section */
    .secondary-section {
        height: auto;
        padding: 60px 20px;
    }

    .why-container {
        font-size: 2.5rem;
    }

    .saying2-container {
        width: 70vw;
        font-size: 1.1rem;
    }

    .cards-container {
        gap: 30px;
        flex-wrap: wrap;
        height: auto;
    }

    .functional-cards {
        width: 45%;
        min-width: 240px;
        height: 300px;
        padding: 30px 20px;
    }

    .card-image {
        width: 80px;
        height: 80px;
    }

    .gold-icon {
        font-size: 2.5rem;
    }

    .whitetextcard {
        font-size: 1.3rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .greytextcard {
        font-size: 0.95rem;
    }
.textcard{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 200px;
}
    /* Programs Section */
    .third-section {
        height: auto;
        padding: 60px 20px;
    }

    .program-cards {
        width: 30%;
        min-width: 280px;
        height: 480px;
        margin-top: 50px;
    }

    .program-images {
        width: 100%;
        height: 260px;
    }

    .program-images img {
        height: 260px;
        width: 100%;
    }

    .cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .program-buttons-container {
        margin-top: 80px;
        width: 70vw;
    }

    .program-button {
        font-size: 1rem;
    }

    /* Success Stories */
    .fourth-section {
        height: auto;
        padding: 60px 20px;
    }

    .card-story-container {
        gap: 30px;
        flex-wrap: wrap;
    }

    .story-cards {
        width: 45%;
        min-width: 320px;
        min-height: 300px;
        padding: 25px;
    }

    .star-icon {
        font-size: 1.5rem;
    }

    .quote-container {
        font-size: 1rem;
    }

    .initials {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    /* CTA Section */
    .fifth-section {
        height: auto;
        padding: 60px 20px;
        min-height: 50vh;
    }

    .action-container {
        width: 85%;
        padding: 50px 30px;
    }

    .calltoaction-container {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .saying2-container {
        width: 80%;
    }

    .call-container {
        width: 90%;
        gap: 40px;
        flex-wrap: wrap;
    }

    .call-item {
        width: 45%;
        min-width: 200px;
    }

    .gold-icon2 {
        font-size: 2rem;
    }

    .journey-info .membername {
        font-size: 1rem;
    }

    .journey-info .memberdate {
        font-size: 0.85rem;
    }

    .call-container-button {
        margin-top: 20px;
    }

    .view-programs {
        width: 260px;
        height: 52px;
    }

    /* Footer */
    .footer-container {
        padding: 50px 20px 30px 20px;
    }

    .footercontent-container {
        gap: 50px;
        width: 90%;
    }

    .gymname-container {
        width: 45%;
        min-width: 250px;
    }

    .quicklinks-container,
    .reachout-container,
    .followus-container {
        width: 22%;
        min-width: 150px;
    }

    /* Navigation */
    nav {
        padding: 0.8rem 2rem;
    }

    .Functional-Logo {
        width: 12%;
        left: 0;
    }

    .ham-menu {
        width: 140px;
        height: 50px;
    }

    /* Membership Page */
    .Membership {
        font-size: 3rem;
    }

    .Options {
        font-size: 3rem;
    }

    .Cards, #card2 {
        width: 45%;
        min-width: 300px;
    }

    .cardgroup {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Gym Page */
    .text2 {
        font-size: 2rem;
    }

    .text {
        font-size: 4rem;
    }

    .wb1, .gb1 {
        font-size: 6rem;
    }

    .grey {
        font-size: 1.5rem;
        margin-top: 70px;
    }

    .gymcardtext {
        font-size: 1.4rem;
    }

    .gymcard {
        width: 45%;
        min-width: 280px;
    }

    .picture-container {
        flex-wrap: wrap;
        height: auto;
        justify-content: center;
    }

    .middle-container {
        height: auto;
        min-height: 70vh;
    }

    .middletext {
        top: 90%;
        font-size: 3rem;
        position: absolute;
    }

    .bottomtext {
        font-size: 1.3rem;
        top: 95%;
    }

    .bottom-container {
        height: auto;
        min-height: 70vh;
    }

    .finaltext {
        font-size: 1.3rem;
        top: 160%;
    }

    .btext {
        font-size: 3rem;
        top: 155%;
    }

    .tcard {
        width: 45%;
        min-width: 280px;
    }

    /* Personal Training */
    .trainer-text {
        font-size: 3rem;
    }

    .headshot {
        width: 45%;
    }

    .container-text {
        font-size: 2rem;
    }

    .parent-container {
        height: auto;
        min-height: 75vh;
    }

    /* Contact Page */
    .second-container {
        height: auto;
        padding-bottom: 60px;
    }

    .contacttabs {
        width: 40%;
        margin-left: 5%;
    }

    .email-container {
        width: 55%;
        margin-left: 20px;
    }

    .map-container {
        width: 40%;
    }

    iframe {
        width: 100%;
        height: 400px;
    }

    .Contact-Form,
    .Message-Box {
        width: 100%;
        gap: 15px;
    }

    /* Store Page */
    .store-container {
        width: 60%;
    }

    .shopping-cart-container {
        top: 35px;
        right: 60px;
    }

    .cart-icon {
        padding: 10px 16px;
        font-size: 1.1rem;
        height: 12px;
    }

    .cart-dropdown {
        min-width: 320px;
        max-width: 350px;
    }

    .storetab-wrapper {
        width: 80%;
        justify-content: center;
    }

    .storetabs {
        width: 45%;
        min-width: 300px;
        margin-left: 20px;
    }

    .storeimage {
        width: 100%;
        height: 260px;
    }

    .st {
        font-size: 1.3rem;
    }

    .money {
        font-size: 2rem;
    }
   
 .storesecond-container{
    height: auto;
 }
}

@media (max-width: 600px) {
    /* Hero Section */
    .BC {
        margin-top: 60px;
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }

    .functional-container {
        font-size: 1.5rem;
        width: 90vw;
        height: auto;
        padding: 10px 0;
    }

    .saying-container {
        font-size: 2.5rem;
        width: 95vw;
        height: auto;
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .second-saying-container {
        font-size: 1rem;
        width: 90vw;
        height: auto;
        padding: 20px 0;
    }

    .home-buttons-container {
        width: 90vw;
        height: auto;
        padding: 20px 0;
    }

    .journey, .programs {
        width: 200px;
        font-size: 0.9rem;
    }

    /* Why Choose Section */
    .secondary-section {
        padding: 40px 20px;
        height: auto;
    }

    .why-container {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .saying2-container {
        width: 90vw;
        font-size: 0.95rem;
        height: auto;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .cards-container {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        height: auto;
        padding: 20px 0;
    }

    .functional-cards {
        width: 90%;
        max-width: 320px;
        height: auto;
        min-height: 250px;
        padding: 30px 20px;
    }

    .card-image {
        width: 70px;
        height: 70px;
    }

    .gold-icon {
        font-size: 2.2rem;
    }

    .whitetextcard {
        font-size: 1.2rem;
    }

    .greytextcard {
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    /* Programs Section */
    .third-section {
        padding: 40px 20px;
        height: auto;
    }

    .program-cards {
        width: 95%;
        max-width: 350px;
        height: auto;
        margin-top: 20px;
    }

    .program-images {
        height: 220px;
    }

    .program-images img {
        height: 220px;
    }

    .program-text {
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .program-button {
        width: 90%;
        font-size: 1rem;
        height: 45px;
    }

    .program-buttons-container {
        width: 90vw;
        margin-top: 40px;
        height: auto;
        padding: 20px 0;
    }

    .view-programs {
        width: 220px;
        height: 50px;
        font-size: 1rem;
    }

    /* Success Stories */
    .fourth-section {
        padding: 40px 20px;
        height: auto;
    }

    .card-story-container {
        flex-direction: column;
        padding: 20px 10px;
        gap: 20px;
    }

    .story-cards {
        width: 95%;
        max-width: 350px;
        padding: 25px;
        min-height: 280px;
    }

    .star-icon {
        font-size: 1.4rem;
    }

    .quote-container {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .initials {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .membername {
        font-size: 1rem;
    }

    .memberdate {
        font-size: 0.85rem;
    }

    /* CTA Section - UPDATED */
    .fifth-section {
        height: auto;
        padding: 40px 15px;
        min-height: auto;
    }

    .action-container {
        width: 95%;
        height: auto;
        padding: 35px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .calltoaction-container {
        font-size: 1.6rem;
        padding: 0 10px;
        margin-top: 0;
    }

    .saying2-container {
        width: 95%;
        font-size: 0.9rem;
        padding: 5px 0;
    }

    .call-container {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: flex-start;
        padding: 0;
        margin-top: 15px;
    }

    .call-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
       justify-content: center;
    }

    .initial-container {
        flex-shrink: 0;
    }

    .gold-icon2 {
        font-size: 1.8rem;
    }

    .journey-info {
        text-align: left;
        flex: 1;
    }

    .journey-info .membername {
        font-size: 0.95rem;
    }

    .journey-info .memberdate {
        font-size: 0.8rem;
    }

    .call-container-button {
        width: 100%;
        height: auto;
        padding: 15px 0 0 0;
        margin-top: 10px;
    }

    .view-programs {
        width: 100%;
        width: 250px;
        height: 48px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-container {
        margin-top: 60px;
        padding: 40px 15px 30px 15px;
    }

    .footercontent-container {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .gymname-container,
    .quicklinks-container,
    .reachout-container,
    .followus-container {
        width: 100%;
    }

    .gymname-container .membername,
    .quicklinks-container .membername,
    .reachout-container .membername,
    .followus-container .membername {
        font-size: 1.1rem;
    }

    .gymname-container .footertext {
        font-size: 0.9rem;
    }

    .footertext {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .footer-copyright {
        padding: 15px 1rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
        text-align: center;
    }

    /* Navigation */
    nav {
        padding: 0.5rem 1rem; 
        height: 60px; 
    }

    .ham-menu { 
        width: 60px; 
        height: 40px;
        margin-left: auto; 
    }

    .ham-menu span {
        width: 30px; 
        height: 3px; 
    }
   
    .off-screen-menu {
        font-size: 2rem; 
        max-width: 100%;
        right: -100%; 
    }

    .Functional-Logo {
        width: 12%;
    }

    /* Membership Page */
    .card {
        width: 85%;
        height: 300px;
        margin: 0 auto;
    }
    
    .card img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    #About {
        height: 35vh;
    }
    
    .cardgroup {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }
    
    #card2 {
        width: 100%;
        height: 33rem;
    }

    .Cards {
        width: 100%;
        height: 33rem;
    }

    .listtext {
        font-size: 1.4rem;
    }

    .black-text {
        font-size: 1.5rem;
    }

    .Container2 {
        height: 35vh;
    }
    
    .card-text {
        font-size: 1rem;
    }

    .Membership {
        font-size: 2rem;
    }

    .Options {
        font-size: 2rem;
    }

    /* Gym Page */
    .gym-container{
        margin-top: 300px;
    }

    /* Personal Training Page */
    .trainer-text {
        font-size: 2rem;
    }

    .headshot {
        width: 55%;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        object-fit: cover;
    }

    .container-text {
        font-size: 1rem;
    }
    
    .parent-container {
        width: 100vw;
        height: 75vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 50%;
        gap: 20px;
    }

    .wb1 {
        font-size: 2rem;
    }
    
    .gb1 {
        font-size: 2rem;
    }

    .Functional {
        font-size: 2rem;
    }

    /* Contact Page */
    .second-container {
        height: auto;
        padding-bottom: 50px;
    }

    .contact-container {
        width: 100%;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .contactheader, 
    .premiertext, 
    .subtext {
        padding-left: 0; 
    }

    .premiertext2 {
        padding-left: 0;
        font-size: 1.8rem;
    }

    .subtext2{
        font-size: 1rem;
         padding-left: 0;
    }

    .tab-wrapper {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contacttabs {
        width: 90%;
        margin: 10px 0;
        left: 0;
        height: auto;
        padding: 15px;
    }
    
    .message-container {
        flex-direction: column;
        align-items: center;
    }

    .email-container {
        width: 90%;
        margin-left: 0;
        margin-top: 40px;
    }

    .Contact-Form, 
    .Message-Box {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: stretch; 
    }

    .Info-Tabs {
        width: 100%; 
    }

    .map-container {
        width: 90%;
        height: auto;
        margin-top: 40px;
    }

    iframe {
        width: 100%;
        height: 300px; 
    }

    .text {
        font-size: 2rem;
    }
    
    .text2 {
        font-size: 1.5rem;
    }

    /* Store Page */
    .store-container {
        width: 90%;
        height: auto;
        margin-top: 30px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 20px;
    }

    .storeheader {
        font-size: 1.2rem;
        padding-left: 0;
    }

    .storetext {
        font-size: 1.8rem;
        padding-left: 0;
    }

    .storetext2 {
        font-size: 1.6rem;
        padding-left: 0;
        margin-top: 30px;
    }

    .storesubtext {
        font-size: 0.95rem;
        padding-left: 0;
        padding: 0 10px;
    }

    .storesubtext2 {
        font-size: .7rem;
        padding-left: 0;
    }

    .storesecond-container {
        min-height: auto;
        text-align: center;
    }

    .shopping-cart-container {
        top: 15px;
        right: 15px;
    }

    .cart-icon {
        padding: 8px 12px;
        font-size: 0.9rem;
        height: 10px;
    }

    .cart-count {
        font-size: 0.8rem;
        padding: 2px 6px;
        min-width: 18px;
    }

    .cart-dropdown {
        min-width: 280px;
        max-width: 90vw;
        right: -10px;
        padding: 15px;
    }

    .cart-dropdown h3 {
        font-size: 1.1rem;
    }

    .cart-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item-info h4 {
        font-size: 0.9rem;
    }

    .cart-item-info p {
        font-size: 1rem;
    }

    .remove-item {
        align-self: flex-end;
        font-size: 0.85rem;
    }

    .checkout-btn {
        padding: 12px;
        font-size: 1rem;
    }

    .storetab-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .storetabs {
        width: 90%;
        max-width: 350px;
        margin: 15px auto;
    }

    .storeimage {
        width: 100%;
        height: 220px;
    }

    .storetabtext {
        padding-bottom: 15px;
    }

    .st {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-top: 15px;
        text-align: left;
    }

    .money {
        font-size: 1.6rem;
        padding-left: 15px;
       text-align: left;
    }

    .plan-descript {
        font-size: 0.85rem;
        padding: 0 15px;
        text-align: left;
    }

    .product-details {
        margin: 10px 15px;
        font-size: 0.95rem;
    }

    .product-details summary {
        font-size: 0.95rem;
    }

    .details-content {
        padding: 12px;
        width: calc(100% - 30px);
    }

    .details-content p {
        font-size: 0.85rem;
    }

    .add-to-cart {
        width: 90%;
        padding: 12px;
        font-size: 0.95rem;
        height: auto;
        margin: 15px auto;
    }
}
