body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text-color-brown);
}

.red {
    color: red;
}

/* BRAND COLORS */
:root {
    --text-color-brown: #69443C;
    --main-font-family: "the-seasons", sans-serif;
    --main-font-weight: 300;
    --main-font-style: normal;
}


/* NAVBAR */
.navbar {
    background-color: rgb(226, 235, 241);
    border-bottom: solid black 1px;
    padding: 10px 0;
    position: fixed;
    z-index: 1000;
    width: 100vw;
}

.navbar-list {
    font-family: var(--main-font-family);
    font-weight: var(--main-font-weight);
    font-style: var(--main-font-style);
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0 30px;
    display: flex;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text-color-brown);
    font-weight: bold;
    transition: color 0.3s ease;
    line-height: 15px;
}

.navbar ul li a:hover {
    color: #007bff;
}

.navbar-item {
    padding: 0;
    margin: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* NAVBAR MEDIA QUERY */

@media (max-width: 352px) {
    .navbar-list {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 868px) {

    #top {
        display: flex;
        justify-content: center;
    }

    .navbar-brand {
        display: none;
    }
    
    .container {
        padding: 0;
    }

    .navbar-right ul li a {
        font-size: 0.8rem;
    }

    .navbar-list {
        align-items: center;
    }

    .navbar-item {
        line-height: 10px;
    }
}

/* MASTHEAD */

.masthead {
    position: relative;
    height: calc(100vh - 80px);
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 70px 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.masthead-v2 {
    padding-top: 50px;
    padding-bottom: 40px;
    height: unset;   
}

.masthead-sub {
    margin-top: 0;
}

.masthead-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.masthead h3 {
    color: var(--text-color-brown);
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
}

.masthead h1 {
    font-size: 36px;
    margin: 20px 0;
    color: var(--text-color-brown);
    font-family: var(--main-font-family);
    font-weight: 600;
    font-style: normal;
    font-size: 5rem;
}

.button-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.button-row .button {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    border: none;
    background: linear-gradient(to right, #e8e4de90, #6192d174);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 10px 5px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.335);
    transition: transform 0.3s, box-shadow 0.3s;
    
}

.button-row .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(247, 247, 247, 0.975);
}

.book-button {
    display: inline-block;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
    padding: 20px 40px;
    border: black 1px solid;
    border-radius: 30px;
    text-decoration: none;
    margin: 20px 0;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatUpDown 3s infinite ease-in-out;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(132, 223, 239, 0.5);
    border: rgb(71, 189, 172) 1px solid;
}

.postbook-contact-info {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.25rem;
    text-decoration: none;
    text-underline-offset: 3px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 20px;
    gap: 10px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}

.postbook-contact-info a {
    color: black;
    cursor: pointer;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.brand-para-1 {
    font-size: 1.5rem;
    margin: 0px;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: var(--text-color-brown);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.brand-para-2 {
    margin-top: 10px;
    margin-bottom: 0;
    font-family: var(--main-font-family);
    font-size: 2rem;
    color: var(--text-color-brown);
    font-weight: bold;
    text-shadow: 0px 0px 15px rgba(247, 244, 244, 0.99), 0 0 10px white;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 550px;
}

.testimonials {
    display: flex;
    height: 75px;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* border: 0.5px solid black; */
    border-radius: 30px;
    box-shadow: 0 0 10px #00000033;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 10px;
    margin: 20px;
    font-size: 1.5rem;
}

.testimonials-message {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.discount {
    color: red;
    margin: 0;
    font-size: 2rem; 
    font-family: var(--main-font-family);
    font-weight: bold;
    text-shadow: 0px 0px 15px rgba(247, 244, 244, 0.99), 0 0 10px white;
}

@media (max-width: 868px) {
    .testimonials {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* MASTHEAD MEDIA QUERIES */

@media (max-width: 868px) {
    
    .masthead {
        padding-top: 50px;
        padding-bottom: 50px;
        height: 100%;
    }

    .masthead h1 {
        font-size: 3rem;
        margin-top: 10px;
        padding-bottom: 10px;
        line-height: 50px;
    }

    .masthead h3 {
        font-size: 1rem;
        margin: 0;
    }

    .masthead-sub {
        padding-bottom: 20px;
    }

    .masthead-content {
        padding: 0 20px;
    }

    .brand-para-1 {
        font-size: 1rem;
    }

    .brand-para-2 {
        font-size: 1.5rem;
    }

    .discount {
        font-size: 1.5rem;
    }

    .button-row {
        flex-direction: column;
        align-items: center;
    }

    .button-row .button {
        margin: 5px 0;
        width: 60%;    
    }

    .button {
        font-size: 1rem;
        min-width: 200px;
    }
}


/* DETAILS */

.details-container {
    display: grid;
    grid-template-columns: 1fr 1.7fr; /* Two columns, the second one takes up 2 fractions of the available space */
    grid-template-rows: auto; /* Auto height for rows */
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(211, 211, 211, 0.158); /* Example background color */
    padding: 20px 0px;
}

.right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(173, 216, 230, 0.504); /* Example background color */
    padding: 20px 20px;
}

.right-column h2 {
    line-height: 2rem;
}

.port-parent {
    background-size: cover;
    background-position: center;
}

.portrait {
    width: 50%;
    min-width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 7px;
}

.points {
    font-family: "tt-commons-pro", sans-serif;;
    line-height: 1.5rem;
    list-style-type: none; 
    padding: 0;
    margin: 0 20px;

}

.points li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    margin: 5px;
    /* border: 1px solid rgb(165, 42, 42); 
    border-radius: 5px; */
}

.details-title {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    text-align: center;
    font-size: 2rem;
}

.combining {
    font-family: "the-seasons", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.details-para {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    text-align: justify;
    margin: 20px 20px;
    max-width: 600px;
}


/* DETAILS MEDIA QUERIES */

@media (max-width: 868px) {
    .details-container {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .left-column {
        order: 2; /* Change the order of the left column */
    }

    .right-column {
        order: 1; /* Change the order of the right column */
    }

    .portrait {
        width: 40%;
        min-width: 0;
    }
}

/* PACKAGES */

.packages {
    text-align: center;
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
    padding: 80px 10px;
}

.packages h1 {
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin: 0;
}

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

.package-text {
    max-width: 250px;
    margin: 20px;
}

.packages p {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    margin: 0 10px;
}

/* PACKAGES MEDIA QUERIES */

@media (max-width: 868px) {
    .package {
        width: 250px;
        height: 250px;
    }

    .package .package-text {
        margin-top: 20px;
    }
}


/* ABOUT */

.about {
    background-image: url(/assets/Website/AI_Photos/Sheets-1-1-ff3a516d5a322a356037bda9432430ae9e896864d96ff327fe6eb896765726ad.png);
    background-size: cover;
    display: flex;
    text-align: center;
    padding: 100px 0;
    justify-content: center;
}

.about h1 {
    margin-bottom: 20px;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 1050px; */
}

.about-bullets-wrapper {
    display: flex;
    margin: 40px 30px;
}

.about-logo {
    width: 40%;
    max-width: 300px;
    min-width: 160px;
    margin: 0 30px;
    height: auto;
    filter: hue-rotate(320deg);
}

.about-points {
    flex: 1; /* Take up available space */
    text-align: left; /* Align bullet points to the left */
}

.about-points ul {
    padding: 0 20px;
    margin: 0; /* Remove default margin */
    min-width: 250px;
    max-width: 370px;
}

.about-points ul li {
    margin-bottom: 10px; /* Add spacing between bullet points */
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
}

.expanded-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    margin: 0;
    padding-bottom: 30px;
    font-family: "the-seasons", sans-serif;
}

.expanded-services .button-row .button:first-child {
    background: linear-gradient(to right, #61aed174, #79fec0ac)
}

.expanded-services .button-row .button:last-child {
    background: linear-gradient(to right, #61aed174, #fcd555ab)
}

/* ABOUT MEDIA QUERY */

@media (max-width: 890px) {
    
    .about {
        background-image: url(/assets/Website/AI_Photos/Sheets-1-1-ff3a516d5a322a356037bda9432430ae9e896864d96ff327fe6eb896765726ad.png);
        background-size: cover;
    }

    .about h1 {
        margin-top: 0;
    }
    
    .about-logo {
        display: none;
    }

    .about-bullets-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .about-bullets-wrapper :nth-child(2) {
        margin-top: 15px;
    }
}

/* CUSTOMIZE */

.customize {
    text-align: center;
    padding: 50px 0 50px 0;
    background-image: url(/assets/Website/AI_Photos/Sheets-2-4007e5e46249bc0a9702b5ed5f72d8b54dcdc206500869f125807b7cb519697e.png);
    background-size: cover;
}

.customize-content {
    max-width: 1000px;
    margin: 0 auto;
}

.customize h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
}

.customize h2 {
    font-size: 1.5rem;
    margin: 0 20px 40px 20px;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: var(--text-color-brown);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.customize-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.customize-item {
    text-align: center;
}

.customize-image {
    width: 200px; 
    height: 200px; 
    border-radius: 10px 20px; 
    object-fit: cover; 
}

.customize-image-2 {
    width: 300px; 
    height: 400px; 
    border-radius: 10px 20px; 
    object-fit: cover; 
}

.customize-description {
    font-size: 1.15rem;
    font-family: var(--main-font-family);
    font-weight: bold;
    text-shadow: 0px 0px 15px rgba(247, 244, 244, 0.99), 0 0 10px white;
}

/* CANCEL POLICY */

.cancellation {
    text-align: center;
    padding: 50px 0;
    background-color: #f9cca9;
}

.cancellation-content {
    max-width: 800px;
    margin: 0 auto;
}

.cancellation h1 {
    font-size: 2rem;
    font-size: 2.5rem;
    margin: 0 30px 20px 30px;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
}

.cancellation-para {
    font-size: 1.2rem;
    margin: 0 30px;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: var(--text-color-brown);
    text-align: justify;
}

/* FOOTER */

.footer {
    width: 100%;
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    font-size: 0.8rem;
}


/* ABOUT PAGE */

.about-page-wrapper {
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
}

.about-intro-wrapper,
.stay-connected {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-intro-wrapper h1 {
    padding-top: 100px;
    margin: 20px auto;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
}

.about-intro-wrapper p {
    max-width: 1000px;
    padding: 0 40px;
}

.about-intro-para {
    text-align: justify;
}

.about-intro-wrapper p,
.about-left-section p,
.stay-connected p {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.25rem;
}

.about-flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    gap: 20px;
}

.about-left-section {
    padding: 20px;
    text-align: center;
}

.about-left-section h2,
.stay-connected h2 {
    text-align: center;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
}

.about-right-section {
    height: 400px;
    width: 80%;
    border-radius: 20px;
    opacity: 85%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.335);
    overflow: hidden;
}

gmp-map {
    border-radius: 20px;
}

.stay-connected {
    margin: 10px 20px 0px 20px;
    padding-bottom: 20px;
}

.stay-connected h2 {
    margin-bottom: 0;
}

.about-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0;
    gap: 20px
}

/* ABOUT PAGE MEDIA QUERY */

@media (max-width: 425px) {
    .about-intro-para {
        padding: 0;
        margin: 0;
    }

    .about-intro-wrapper p {
        padding: 0 1rem;

    }
}

@media (max-width: 768px) {
    .about-intro-wrapper h1 {
        padding-top: 50px;
    }
}

@media (max-width: 1024px) {
    .about-intro-wrapper p {
        max-width: 720px;
    }
}

@media (min-width: 1025px) {
    .about-intro-wrapper p {
        max-width: 720px;
    }
}

/* PACKAGES PAGE */

.pricing-container {
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-container h1 {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    color: var(--text-color-brown);
    margin-bottom: 0;
}

.pricing-container p {
    max-width: 800px;
    margin: 20px 30px;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-image: url(/assets/Website/AI_Photos/Spa-1-7db0eda667d57f6d0742ec3f32678052e5b5de9aba17c8b8f7815eb9527966a0.jpeg);
    background-size: cover;
    color: #FFF5EB;
    padding: 20px;
    margin: 20px 20px;
    max-width: 1700px;
    min-width: none;
    border-radius: 10px;
    box-shadow: 0 0px 50px rgb(255, 254, 254);
}

.pricing-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    min-width: 200px;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    /* box-shadow: 0 0px 20px rgb(255, 254, 254); */
    background-color: #6aa9b7e8;
    font-family: "tt-commons-pro", sans-serif;
}

.pricing-item a {
    /* remove default link styling */
    text-decoration: none;
    color: unset;
    background-color: unset;
}

.pricing-item h3 {
    text-shadow: 0 0px 22px rgb(255, 254, 254);
    font-size: 1.25rem;
}

.pricing-item h5 {
    margin-bottom: 0;
}

.pricing-item p {
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    margin: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.pricing-item p span {
    background-color: #69443c67;
    border-radius: 10px;
    padding: 5px;
    margin: 5px 5px;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
    margin-bottom: 50px;
    padding: 0 20px;
    text-align: center;
}

.packages-container div .package-text{
    border-radius: 10px;
    box-shadow: 0 0px 20px rgb(255, 254, 254);
    background-color: #fff5ebba;
    padding: 20px;
}

.package-1 p {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.25rem;
    margin: 0 10px;
    color: var(--text-color-brown);
}

.package-deals {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 10px 40px 10px;
}

.package-deals h2 {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    color: var(--text-color-brown);
    margin: 10px 0 20px 0;
}

.package-deals h3 {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.45rem;
    color: var(--text-color-brown);
    margin: 10px 0;
}

.package-deals-h3 {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 5px 15px;
}

.package-deals h6 {
    margin: 0;
    font-size: 0.83rem;
}

.package-deals p {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--text-color-brown);
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 5px 15px;
}

.insta-logo {
    width: 30px;
    height: 30px;
}

.yelp-logo {
    width: 65px;
    height: 50px;
}

/* PRICING & PACKAGES MEDIA QUERY */

@media (min-width: 320px) {
    .pricing-item p {
        text-align: center;
    }
}

@media (min-width: 352px) {
    .pricing-table {
        padding: 0;
    }
    
    .packages-container {
        padding: 0;
    }

    .pricing-container h1 {
        margin-top: 50px;
    }

    .pricing-container p {
        text-align: justify;
    }
    
    .pricing-item p {
        text-align: center;
    }

    .package-1 {
        padding: 10px 0;
    }

    .package-1 img {
        padding: 0;
        margin: 0;
    }

    .package-1 p {
        text-align: center;
    }

    .package-text {
        padding: 0;
        margin: 0;
    }
}

@media (min-width: 500px) {
    .pricing-item {
        min-width: 345px;
    }
}

@media (min-width: 868px) {
    
    .pricing-container {
        padding-top: 20px;
    }
    
    .pricing-table {
        padding: 20px 20px;
        max-width: 80vw;
        box-shadow: none;
    }

    .pricing-item {
        margin: 10px 5px;
        padding: 10px;
        min-width: 345px;
    }

    .pricing-item p span {
        background-color: #69443c67;
        border-radius: 10px;
        padding: 5px;
        min-width: 100px;
        text-align: center;
    }
}

/* BOOK & CONTACT PAGE */

.booking-container {
    background-image: url(/assets/Website/Adobe_Stock/Linens-6279a033c5f399ac91f0ceb7298465a9b9870df6bef2687af708626409dbd859.jpeg);
    background-size: cover;
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-container h1 {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    color: var(--text-color-brown);
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.booking-container h3 {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--text-color-brown);
    margin: 10px 0;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 0 30px;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    text-align: center;
}

.booking-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 50px 0;
}

.booking-logo {
    width: 70%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 20px;
    opacity: 60%;
}

.booking-image {
    height: calc(100vh + 80px);
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    opacity: 30%;
}

.contact-reqs {
    line-height: 1.25rem;
    /* padding-right: 40px; */
    width: 100%;
}

/* BOOKING CONTACT MEDIA QUERY */

@media (max-width: 352px) {
    .booking-container {
        height: 100vh;
        font-size: 20px;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .booking-container h1 {
        font-family: var(--main-font-family);
        font-weight: 700;
        font-style: normal;
        font-size: 1.5rem;
        color: var(--text-color-brown);
        margin-bottom: 0;
        text-align: center;
    }
    
    .booking-container h3 {
        font-family: "tt-commons-pro", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        color: var(--text-color-brown);
        margin: 10px 20px;
        text-align: center;
    }

    .contact-info {
        font-size: 1rem;
    }
    
    .booking-logo {
        width: 40%;
    }

    .contact-reqs {
        text-align: left;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .booking-info {
        /* height: 100vh; */
        padding-top: 90px;
    }
    
    .booking-image {
        display: none;
    }

    .booking-logo {
        width: 40%;
    }

    .contact-reqs p {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Pregnancy Page Styles */
.pregnancy-container {
    background-size: cover;
    padding-top: 80px;
    text-align: center;
}

.pregnancy-container h1 {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    color: var(--text-color-brown);
    margin-bottom: 20px;
}

.pregnancy-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.pregnancy-intro p {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin: 20px 0;
}

.pricing-highlight {
    background-color: rgba(120, 197, 238, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
}

.pricing-highlight span {
    background-color: #69443c67;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
    color: #FFF5EB;
}

.pricing-highlight a {
    text-decoration: none;
    color: #FFF5EB;
}

.tagline {
    font-family: var(--main-font-family);
    font-weight: 700;
    /* font-style: italic; */
    font-size: 1.8rem;
    color: var(--text-color-brown);
    margin: 30px 0;
}

.pregnancy-weeks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.week-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.week-box h3 {
    font-family: var(--main-font-family);
    color: var(--text-color-brown);
    margin-bottom: 20px;
}

.week-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    padding: 15px;
}

.week-section {
    background-color: #6aa9b7e8;
    border-radius: 10px;
    padding: 15px;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.week-section h4 {
    color: #FFF5EB;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.week-section p {
    color: #FFF5EB;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .week-content {
        grid-template-columns: 1fr;
    }
    
    .week-box {
        margin: 10px;
    }
    
    .pricing-highlight span {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

/* Update trimester-box styling in application.css */
.trimester-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    min-width: 300px;
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    background-color: rgba(75, 179, 235, 0.8);
    color: #FFF5EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* background-image: url(/images/Website/AI_Photos/Spa-1.jpeg); */
}

.trimester-box:nth-of-type(1) {
    background-image: url(/assets/Website/AI_Photos/Spa-2-cd00bb053ade491626d95b6d4fc4c94e32c8a870d01c5e0d94fd9294318fc541.jpeg);
}

.trimester-box:nth-of-type(2) {
    background-image: url(/assets/Website/AI_Photos/Spa-4-3fe62fba74ff7e9f90455294191e61c533cb5e6981d50f74762bfcf6894e1491.jpeg);
}

.trimester-box:nth-of-type(3) {
    background-image: url(/assets/Website/AI_Photos/Spa-5-681bf8df41f12df6d098034839d06777b8cc3c23ebcbb0118ac803451685b659.jpeg);
}

.trimester-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 245, 235, 0.9); */
    /* z-index: 1; */
}

.trimester-box > * {
    position: relative;
    z-index: 2;
}

.trimester-box h3 {
    font-family: var(--main-font-family);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0px 22px rgb(255, 254, 254);
}

.pregnancy-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: rgba(120, 197, 238, 0.8);
    margin-top: 40px;
    background-image: image-url(/images/Website/AI_Photos/Spa-1.jpeg);
}

.pregnancy-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pregnancy-photo:hover {
    transform: scale(1.02);
}
