*, html{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.5s ease;
}

body{
    background: var(--beige-cream);
    scroll-behavior: smooth;
}
html{scroll-behavior: smooth;}

/* Root font scaling */
:root {
  font-size: 16px;
  --deep-teal: #003839;
  --warm-yellow: #D4AF37;
  --beige-cream: #F3E9DC;
  --aged-parchment: #F5F1E6;
  --library-green: #2E4D3E;
  --deep-navy: #1A2B3C;
}

/* Responsive Typography */

/* Headings */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
  font-family: "Sekuya", system-ui;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.35;
  font-weight: 500;
}

/* Paragraph */
p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  font-family: "Titilium", sans-serif;
}

/* Span (inline text) */
span {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* Links */
a {
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  text-decoration: none;
}

/* Buttons */
button {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  padding: 0.6em 1.2em;
  border: none;
  cursor: pointer;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    overflow: hidden;
    width: min(1200px, 97%);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: transparent;
    z-index: 4;
    position: fixed;
    top: 20px;
    left: 50%;
    transition: top 0.5s ease, border-radius 0.5s ease, backdrop-filter 0.5s ease, background 0.5s ease;
    transform: translateX(-50%);
}
header.scroll{
    top: 0;
    border-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: var(--deep-teal);
}
header .logo img{
    object-fit: cover;
    width: 120px;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 10px rgba(0,0,5,0.3));
}
header nav{
    display: flex;
    gap: 15px;
}
header nav a{
    color: white;
    font-family: "Figtree", system-ui;
    font-weight: light;
    font-style: italic;
    position: relative;
    opacity: 0.7;
}
header nav a:hover{
    color: var(--beige-cream);
    opacity: 1;
}
header nav a::after{
    position: absolute;
    content: "";
    bottom: -7px;
    left: 0;
    width: 0%;
    transition: width 0.5s ease;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, var(--beige-cream));
}
header nav a:hover::after{
    width: 100%;
    opacity: 1;

}
header ul{
    display: flex;
    align-items: center;
    list-style: none;
}
header ul li a{
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    color: var(--deep-teal);
    font-family: "Sekuya", system-ui;
    font-size: 10px;
    padding: 10px 15px;
    border: 2px solid var(--beige-cream);
    background: var(--beige-cream);
}
header ul li a:hover{
    background: none;
    color: white;
}

header .menuBtn{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-right: 7px;
}
header .menuBtn:hover div:first-child,header .menuBtn:hover div:last-child, header .menuBtn:hover div:nth-child(2){
    background: white;
}
header .menuBtn div{
    background: white;
    height: 3px;
    border-radius: 40px;
    margin-left: auto;
}
header .menuBtn div:first-child{
    width: 90%;
}
header .menuBtn div:nth-child(2){
    width: 70%;
}
header .menuBtn div:last-child{
    width: 40%;
}

header.open .menuBtn{
    margin-top: 10px;
}
header.open .menuBtn div:first-child{
    transform: translate(-4px, 3px);
    rotate: 45deg;
    width: 100%;
}
header.open .menuBtn div:nth-child(2){
    width: 70%;
    opacity: 0;
}
header.open .menuBtn div:last-child{
    width: 40%;
    width: 100%;
    transform: translate(6px, -14px);
    rotate: -45deg;
}


/* MENU SECTION */
main.open .menu{
    max-height: 2000px;
    padding: 20px;
}
main .menu{
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 5;
    color: white;
    text-align: center;
    max-height: 0px;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease, top 0.5s ease;
    overflow: hidden;
}
main .menu.adjust{top: 70px;}
main .menu h4{
    font-family: "Titallium", system-ui;
    color: white;
    margin-bottom: 30px;
}
main .menu a{
    display: block;
    padding: 10px;
    color: white;
    font-family: "Figtree", sans-serif;
}

/* HERO SECTION */

main .hero{
    display: flex;
    align-items: center;
    background-image: url(./images/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow: hidden;
}
main .hero .wrap{
    width: 100%;
    min-height: 100vh;
    padding: 0px 30px;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7), rgba(0,0,0,0.1), rgba(0,0,0,0.1));
}
main .hero .wrap .txt{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 0px 0px;
    line-height: 1.5;
    max-width: 1200px;
    min-height: 95vh;
    margin: auto;
}
main .hero .wrap .txt h5{
    margin-right: auto;
    border: 2px solid var(--beige-cream);
    font-weight: light;
    padding: 5px 10px;
    border-radius: 10px;
    background: var(--deep-teal);
    background: var(--beige-cream);
    color: var(--deep-teal);
    font-family: "Figtree", sans-serif;
}
main .hero .wrap .txt h2{
    font-family: "Sekuya", system-ui;
    font-size: 35px;
    line-height: 1.5;
    width: 60%;
    margin-right: auto;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
main .hero .wrap .txt p{opacity: 0.8; width: 50%; margin-right: auto;}
main .hero .wrap .cta{
    margin-right: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
main .hero .wrap .cta a{
    padding: 8px 15px;
    border: 2px solid var(--beige-cream);
    background: var(--beige-cream);
    border-radius: 10px;
    color: var(--deep-teal);
    font-family: "Titallium", system-ui;
    font-weight: bold;
}
main .hero .wrap .cta a:last-child, main .hero .wrap .cta a:hover{
    background: transparent;
    color: white;
    font-weight: light;
}
main .hero .cta a:last-child:hover{
    background-color: var(--beige-cream);
    color: var(--deep-teal);
}

/* ABOUT */
main .about{
    text-align: center;
    padding: 60px 0px;
    background: var(--deep-navy);
    color: white;
}
main .about .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    margin-top: 20px;
    max-width: 1200px;
    background: rgba(0,0,0,0.7);
    border-radius: 20px;
    overflow: hidden;
}
main .about h3{
    font-family: "Figtree", sans-serif;
}
main .about .grid .img{
    border: 1px solid var(--deep-teal);
    border-radius: 20px;
    overflow: hidden;
}
main .about .grid .img img{
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
}
main .about .grid .txt{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
}
main .about .grid .txt h4{
    font-family: "Sekuya", system-ui;
}
main .about .grid .txt p{
    opacity: 0.7;
    margin-top: 20px;
}
main .about .grid .txt a{
    display: block;
    color: white;
    background: var(--deep-teal);
    padding: 10px 20px;
    width: fit-content;
    margin: 20px auto 0px auto;
    border: 2px solid var(--deep-teal);
    border-radius: 5px;
    font-family: "Titallium", sans-serif;
}
main .about .grid .txt a:hover{
    background: none;
    color: white;
    border-radius: 20px;
}

/* JOIN Section */
main .join{
    color: white;
    text-align: center;
    padding: 60px 0px; 
    background: var(--deep-teal); 
}
main .join h3{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Figtree";
}
main .join p{
    margin: 10px 0;
}
main .join .desc{
    max-width: 80%;
    margin: 10px auto;
}
main .join .grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 25px;
    margin: auto;
    margin-top: 50px;
    position: relative;
    max-width: 1200px;
    padding: 0px 20px;
}
main .join .grid::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 5px;
    background-color: var(--beige-cream);
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0px 0px 10px var(--deep-teal);
}
main .join .grid .card{
    border: 1px solid var(--deep-teal);
    padding: 30px;
    border-radius: 10px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom right, var(--dark-teal), var(--beige-cream));
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}
main .join .card:hover{
    cursor: pointer;
}
main .join .card h4{
    font-family: "Titallium", sans-serif;
}
main .join .grid .card p{opacity: 0.5;}
main .join .card a{
    display: block;
    margin-top: 30px;
    border: 1px solid var(--beige-cream);
    color: var(--deep-teal);
    font-family: "Figtree", system-ui;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    background: var(--beige-cream);
}
main .join .card a:hover{
    background: transparent;
    color: white;
}

/* HOW */
main .how{
    text-align: center;
    background: #999997;
    color: black;
    padding: 60px 0;
    overflow-x: auto;
}
main .how h3{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Figtree", sans-serif;/
}
main .how .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 30px auto;
    gap: 20px;
    width: min(1200px, 80%);
}
main .how .grid div{
    border-radius: 10px;
    border: 1px solid black;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}
main .how .grid div h5{
    background-color: black;
    color: white;
    padding: 10px 0;
    font-weight: bold;
    font-family: "Figtree", sans-serif;
    font-size: min(1.5rem, 20px);
}
main .how .grid div p{
    padding: 20px 15px;
    color: black;
}

main .how .cont{
    max-width: 1200px;
    width: min(1200px, 95%);
    overflow-x: scroll;
    margin: auto;
}
main .how .cont table{
    margin: 20px auto;
    width: min(1200px, 80%);
    border: 2px solid black;
    border-collapse: collapse;
    white-space: nowrap;
}
main .how .cont table h5{font-size: min(1.5rem, 20px);}
main .how .cont table tbody tr td{
    background: white;
    border: 2px solid black;
}
main .how .cont table tr th{
    padding: 10px;
    background: black;
    color: white;
    font-family: "Titallium", sans-serif;
}
main .how .cont table tbody tr td{
    font-family: "Figtree", system-ui;
    padding: 10px;
    opacity: 0.7;
}

/* PRICE */
main .price{
    background: var(--deep-teal);
    padding: 60px 0;
    color: var(--beige-cream);
}
main .price h3{
    font-family: "Figtree", sans-serif;
    text-align: center;
}
main .price p{text-align: center; margin-top: 10px; font-style: oblique;}
main .price .grid{
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
main .price .grid .card{
    font-family: "Figtree", sans-serif;
    background: var(--beige-cream);
    border: 2px solid var(--beige-cream);
    color: var(--beige-cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
main .price .grid .card .plan{
    padding: 15px;
    background: var(--beige-cream);
    color: var(--deep-teal);
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
}
main .price .grid .card .txt{
    padding: 30px 15px;
    background: var(--deep-navy);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
main .price .grid .card .txt h5{
    font-family: "Figtree", sans-serif;
    font-style: italic;
}
main .price .grid .card .txt ul{
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
main .price .grid .card .txt ul li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3px;
}
main .price .grid .card .txt a{
    color: var(--deep-teal);
    font-weight: bold;
    text-align: center;
    border: 2px solid var(--beige-cream);
    border-radius: 5px;
    width: 100%;
    margin: 20px 0 0 0;
    display: block;
    padding: 8px 0;
    border: 2px solid var(--beige-cream);
    background: var(--beige-cream);
}
main .price .grid .card .txt a:hover{
    background: transparent;
    color: var(--beige-cream);
}

main .price .cont{
    max-width: 1200px;
    width: min(1200px, 95%);
    overflow-x: scroll;
    margin: 30px auto 0;
}
main .price .cont table{
    border: 2px solid var(--beige-cream);
    /* max-width: 1200px;
    width: min(90%, 1200px); */
    border-collapse: collapse;
    overflow: hidden;
    font-family: "Figtree", sans-serif;
    white-space: nowrap;
}
main .price .cont table thead tr th{
    background: var(--beige-cream);
    color: var(--deep-teal);
    padding: 10px 15px;
}
main .price .cont table tbody tr{
    border: 2px solid var(--beige-cream);
}
main .price .cont table tbody tr td{
    text-align: center;
    padding: 8px 15px;
    border-right: 2px solid var(--beige-cream);
    background: var(--deep-navy);
}


/* MONTH */
main .month{
    background: url(./images/book_of_the_month_bg.png), black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}
main .month .wrap{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    text-align: center;
    padding: 60px 0px;
}
main .month .wrap h3{
    font-family: "Figtree", sans-serif;
}
main .month .wrap .grid{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
main .month .wrap .grid .img{
    width: 100%;
}
main .month .wrap .grid .img img{
    max-width: 100%;
    object-fit: cover;
}
main .month .wrap .grid .txt{
    padding: 60px 30px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
main .month .wrap .grid .txt h4{
    font-family: "Sekuya", system-ui;
    line-height: 1.5;
}
main .month .wrap .grid .txt p{opacity: 0.6; margin-top: 20px;}
main .month .wrap .grid .txt .cta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;    
    margin: 20px auto 0px 0px;
    width: fit-content;
}
main .month .wrap .grid .txt .cta a, main .month .wrap .grid .txt .cta a:last-child:hover{
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid var(--deep-teal);
    border-radius: 5px;
    font-family: "Figtree";
    background: var(--deep-teal);
}
main .month .wrap .grid .txt .cta a:last-child, main .month .wrap .grid .txt .cta a:hover{
    background: none;
    color: white;
}

/* REVIEWS */
main .reviews{
    background: url(./images/reviews_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}
main .reviews h3{font-family: "Titallium", sans-serif;}
main .reviews .wrap{
    width: 100%;
    padding: 60px 0px;
    background: rgba(0,0,0,0.5);
}
main .reviews .wrap .flex{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow-x: scroll;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    padding: 40px 0px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 20px;
}
@supports (scrollbar-width: none){
    main .reviews .wrap .flex{
        scrollbar-width: none;
    }
}
main .reviews .wrap .flex .card{
    width: min(400px, 100%);
    border-radius: 10px;
    border: 1px solid var(--deep-teal);
    -webkit-backdrop-filter: blur(10px) brightness(60%);
    backdrop-filter: blur(10px) brightness(60%);
    padding: 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
    text-align: left;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
main .reviews .wrap .flex .card:hover{
    cursor: pointer;
    box-shadow: 0px 0px 0px 2px var(--deep-teal);
}
main .reviews .wrap .flex .card .avatar{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
main .reviews .wrap .flex .card .avatar img{
    width: 150px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}
main .reviews .wrap .flex .card .avatar span{
    margin: 5px 0;
}
main .reviews .wrap .flex .card .avatar .rating{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
main .reviews .wrap .flex .card .avatar .rating p{font-style: italic;}
main .reviews .wrap .flex .card .txt{
    margin-top: 20px;
    font-family: "Titallium", sans-serif;
}
main .reviews .wrap .flex .card .txt p{
    font-style: italic;
}
main .reviews .wrap .flex .card .txt .stats h5{
    margin-top: 10px;
    opacity: 0.7;
}
main .reviews .wrap .flex .card .txt .stats{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--deep-teal);
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    background: rgba(0,0,0,0.5);
}
main .reviews .wrap .flex .card .txt .stats img{
    max-width: 50px;
    object-fit: cover;
    border-radius: 28px;
    -webkit-backdrop-filter: drop-shadow(0px 0px 10px var(--deep-teal));
    backdrop-filter: drop-shadow(0px 0px 10px var(--deep-teal));
}

/* FOOTER */
footer{
    background: url(./images/footer_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 0 0;
}
footer p{
    opacity: 0.7;
    margin-top: 20px;
    line-height: 1.5;
}
footer .grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    background: rgba(0,0,0,0.6);
    padding: 60px 30px;
}
footer .grid h4{
    font-family: "Figtree", sans-serif;
}
footer .grid .logo{
    text-align: center;
}
footer .grid .logo img{
    width: 250px;
    -webkit-backdrop-filter: drop-shadow(10px, 10px, 10px, white);
    backdrop-filter: drop-shadow(10px, 10px, 10px, white);
    border-radius: 10px;
}
footer .grid .links ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}
footer .grid .links ul li a{
    color: white;
    font-family: "Titallium", sans-serif;
    position: relative;
}
footer .grid .links ul li a::after{
    position: absolute;
    content: "";
    bottom: -7px;
    left: 0;
    width: 0%;
    transition: width 0.5s ease;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, var(--deep-teal), var(--deep-navy));
    background: linear-gradient(to right, var(--deep-teal));
}
footer .grid .links ul li a:hover{
    color: var(--deep-teal);
}
footer .grid .links ul li a:hover::after{
    width: 100%;
}
footer .grid .signup form{
    margin: 20px 0;
}
footer .grid .signup form .email{
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin: 20px 0;
    box-shadow: 0px 0px 5px var(--deep-teal);
    width: fit-content;
    border-radius: 8px;
    overflow: hidden;
}
footer .grid .signup form .email label{
    padding: 12px 15px;
    background: var(--deep-teal);
    color: var(--beige-cream);
}
footer .grid .signup form .email input{
    outline: none;
    border: none;
    padding: 0px 10px;
    background: var(--beige-cream);
}
footer .grid .signup form button{
    font-size: 16px;
    background: none;
    border: 1px solid var(--beige-cream);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    width: 100%;
    font-family: "Figtree", sans-serif;
    box-shadow: 0px 0px 5px var(--beige-cream);
}
footer .grid .signup form button:hover{
    box-shadow: 0px 0px 0px white;
    background: var(--beige-cream);
    color: var(--deep-teal);
}
footer .grid .sm ul{
    margin-top: 20px;
}
footer .grid .sm ul li{
    display: flex;
    align-items: stretch;
    background: rgba(0,0,0,0.5);
    border-radius: 5px;
}
footer .grid .sm ul li i{
    padding: 0 15px 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .grid .sm ul li span{
    font-family: "Figtree";
    padding: 10px;
}
footer .copyright{
    text-align: center;
    font-family: "Figtree", sans-serif;
    padding: 15px 0;
    border-top: 1px solid grey;
    background: rgba(0,0,0,0.6);
    max-width: 1200px;
    margin: auto;
}

/* Mobile */
@media (max-width: 767px) {
    header .logo img{width: 100px;}    
    header nav, header ul{display: none;}

    main .hero .wrap{background: linear-gradient(to right, rgba(0,0,0,0.7)); padding: 0px 20px; text-align: center;}
    main .hero .wrap .txt h5{margin-right: 0; margin-bottom: 10px;}
    main .hero .wrap .txt h2{font-size: 1.7rem; width: 100%;}
    main .hero .wrap .txt p{width: 80%; margin: 0 auto;}
    main .hero .wrap .cta{margin-right: 0;}
    main .hero .wrap .cta a{padding: 5px 10px;}

    main .about{border-radius: 0px; padding: 60px 0px 0px;}
    main .about .grid{padding: 10px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
    main .about .grid .txt{padding: 30px 20px;}
    main .about .grid .txt a{margin-top: 20px;}

    main .how .grid{grid-template-columns: repeat(1, 1fr);}

    main .price .grid{grid-template-columns: repeat(1, 1fr); padding: 0px 20px; gap: 20px;}

    main .month{background-size: contain;}
    main .month .wrap .grid{flex-direction: column-reverse;}
    main .month .wrap .grid .txt{text-align: center;}
    main .month .wrap .grid .txt .cta{width: fit-content; margin: 20px auto;}

    main .reviews .wrap .flex{padding: 40px 20px;}

    footer .grid{text-align: center;}
    footer .grid .signup form .email{margin: 20px auto;}

    main .join .grid, main .about .grid, footer .grid{grid-template-columns: repeat(1, 1fr);}
    main .join .grid::after{min-height: 100%; height: 100%; width: 5px;}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    header .menuBtn{display: none;}  

    main .hero .wrap{background: linear-gradient(to right, rgba(0,0,0,0.7)); padding: 0px 20px; text-align: center;}
    main .hero .wrap .txt{width: 90%; margin: auto;}
    main .hero .wrap .txt h2{width: 100%; margin: 0 auto;}
    main .hero .wrap .txt p{width: 80%; margin: 10px auto;}
    main .hero .wrap .txt h5, main .hero .wrap .cta{margin-right: 0;}

    main .about{padding: 30px 20px;}
    main .about .grid .txt{padding: 30px 20px;}

    main .price .grid{grid-template-columns: repeat(2, 1fr); padding: 0px 20px; gap: 20px;}

    main .reviews .wrap .flex{padding: 40px 20px;}

    footer .grid .signup form .email{margin: 20px auto;}

    main .join .grid, main .how .grid, footer .grid{grid-template-columns: repeat(2, 1fr); text-align: center;}
}

/* Desktop */
@media (min-width: 1025px) {
    header .menuBtn, main .menu{
        display: none;
    } 
}