@import url('fonts/fonts.css');

/* Reset body margin and padding */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensures the body covers the full viewport height */
    width: 100%;
    /* Ensures the body covers the full viewport width */
    background-color: #C1C9F4;
}

/* Set the responsive background image on the body */
body {
    background-image: url('Images/Backgrounds/MainBackground.png');
    background-size: 100%;
    /* Adjust width fully, height adjusts proportionally */
    background-repeat: no-repeat;
    /* Prevents tiling */
    background-position: center top;
    /* Aligns the image to the top center */
}

.container {
    display: flex;
    flex-direction: column;
}

.LogoImage {
    margin-top: 5%;
    margin-left: 7%;
    width: 10%;
}

.Slogan {
    margin-left: 7%;
    font-family: 'Gendry', sans-serif;
    font-size: 5vw;
    font-weight: unset;
    line-height: 1;
    color: #1f234f;
    margin-bottom: 1%;
    margin-top: 3%;
}

.SubSlogan {
    font-family: 'Gendry', sans-serif;
    font-size: 2.5vw;
    font-weight: unset;
    color: #1f234f;
    margin: 0;
    margin-left: 7%;
}

.BulletPoints {
    margin-left: 7%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-family: 'GothamBook', sans-serif;
    font-size: 1.3vw;
    font-weight: 600;
    color: #1f234f;
}

.BookingButtons {
    margin-top: 2%;
    margin-left: 7%;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.left-button,
.right-button {
    background-color: #1f234f;
    border-radius: 50px;
    font-family: 'GothamBook', sans-serif;
    font-size: 1.15vw;
    font-weight: 600;
    color: #f9f9ef;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    border: unset;
}

.left-button:hover,
.right-button:hover {
    cursor: pointer;
    background-color: #8289db;
}

.FAQ {
    margin-left: 7%;
    display: flex;
    flex-direction: row;
    margin-top: 10%;
    gap: 50px;
}

.FAQImage {
    width: 50%;
}

.Topics {
    color: #1f234f;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
}

.FAQTitle {
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    font-weight: unset;
    margin-bottom: 3%;
    margin-top: 15%;
}

.FAQText {
    font-family: 'GothamBook', sans-serif;
    font-size: 1.4vw;
    font-weight: 600;
}

.FAQ2 {
    margin-right: 7%;
    display: flex;
    flex-direction: row;
    margin-top: 5%;
    gap: 10px;
}

.FAQImage2 {
    width: 50%;
}

.Topics2 {
    color: #1f234f;
    padding-left: 10%;
}

.FAQTitle2 {
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    font-weight: unset;
    margin-bottom: 3%;
    margin-top: 15%;
}

.FAQText2 {
    font-family: 'GothamBook', sans-serif;
    font-size: 1.4vw;
    font-weight: 600;
}

.ServicesTitle {
    color: #1f234f;
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    font-weight: unset;
    margin-bottom: 3%;
    margin-top: 10%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.BundlesSection {
    display: flex;
    justify-content: space-between;
    /* Separate left and right bundles */
    align-items: flex-start;
    /* Align items to the top */
    gap: 20px;
}

.leftside {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.rightside {
    display: flex;
    justify-content: flex-start;
    flex: 1;
}

.CallBundle,
.TextBundle {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center text horizontally relative to the image */
    text-align: center;
    /* Center text within its own element */
}

.LeftIMG,
.RightIMG {
    width: 25vw;
    /* Adjust image size */
    margin-bottom: 10px;
    /* Add space between the image and the text */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.TextDiv,
.CallDiv {
    border-radius: 50px;
    padding: 1%;
    transition: border 0.3s ease-in-out;
}

.LeftIMG:hover,
.RightIMG:hover {
    transform: scale(1.1);
}

.BundleTitle {
    font-family: 'Gendry', sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    color: #1f234f;
    margin-top: 0;
    margin-bottom: 0;
}

.BundleText {
    font-family: 'GothamBook', sans-serif;
    font-size: 1.4vw;
    font-weight: 600;
    color: #1f234f;
}

.PriceSection {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 5%;
}

.PriceCard {
    position: relative;
    /* To position the badge inside the card */
    display: flex;
    flex-direction: column;
    border: 1px solid #1f234f;
    border-radius: 50px;
    min-height: 20vh;
    min-width: 25vw;
    padding: 15px;
}

.Badge {
    position: absolute;
    top: -20px;
    /* Adjust to overlap the border */
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9ef;
    /* Gold color for "Best Seller" */
    color: #1f234f;
    font-family: 'Gendry', sans-serif;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2vw;
    border: 1px solid #1f234f;
    z-index: 10;
    /* Ensure it stays on top */
    font-family: 'GothamBook', sans-serif;
}

.CardTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.PriceTitle {
    font-family: 'Gendry', sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    color: #1f234f;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5%;
}

.PriceDiscount {
    font-family: 'Gendry', sans-serif;
    color: #f9f9ef;
    background-color: #1f234f;
    padding: 10px;
    margin-right: 5%;
    font-size: 1vw;
}

.Price {
    font-family: 'Gendry', sans-serif;
    font-size: 3vw;
    font-weight: bold;
    color: #1f234f;
    margin-top: 5%;
    margin-bottom: 3%;
    margin-left: 5%;
}

.feature-list {
    font-family: 'GothamBook', sans-serif;
    font-size: 1.3vw;
    font-weight: 600;
    color: #1f234f;
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
    margin-top: 5%;
}

.feature-list li i {
    color: #20c997;
    margin-right: 8px;
}



.PurchaseButton {
    margin-top: 10%;
    margin-bottom: 5%;
    background-color: #1f234f;
    color: #f9f9ef;
    font-family: 'Gendry', sans-serif;
    font-size: 1.5vw;
    width: 80%;
    align-self: center;
    height: 75px;
    border: unset;
    cursor: pointer;
    transition: border-radius 0.3s ease-in-out;
}

.PurchaseButton:hover {
    border-radius: 50px;
}

#revealText {
    color: #f9f9ef;
    cursor: pointer;
}

#revealText:hover {
    color: #1f234f;
}

/* Bubble styles (hidden by default) */
.bubble {
    color: #000;
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    width: 100%;
}

/* Bubblecontainer for positioning relative elements */
.bubblecontainer {
    position: relative;
    display: inline-block;
}

#subcards1,
#subcards2 {
    display: none;
    flex-wrap: wrap;
}

.QBorder {
    border: 2px solid #1f234f;
    border-radius: 25px;
    margin: 2% 0;
    padding: 0 2%;
}

.Questions {
    background-image: url('Images/Backgrounds/FAQBackground.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #9A9EF8;
}

.QBorder:hover .Question {
    text-decoration: underline;
}

.QuestionsTitle {
    color: #1f234f;
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    font-weight: unset;
    margin-bottom: 3%;
    margin-top: 20%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.QuestionsContainer {
    padding-left: 20%;
    padding-right: 20%;
}

.Q {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.preicon {
    font-size: 3vw;
    margin: auto 0;
}

.plusicon {
    font-size: 3vw;
    margin: auto 0;
    cursor: pointer;
}

.Question {
    color: #1f234f;
    font-family: 'GothamBook', sans-serif;
    font-size: 2vw;
    font-weight: 600;
    width: 100%;
    padding-left: 2%;
    cursor: pointer;
}

.A {
    display: none;
}

.QuestionAnswer {
    color: #1f234f;
    font-family: 'GothamBook', sans-serif;
    font-size: 1.4vw;
    font-weight: 600;
    padding: 0 3%;
    margin-top: 0;
}

/* Reviews */
/* General styles for the section */
.review-section {
    padding: 50px 20px;
    background-color: #9A9EF8;
    text-align: center;
    width: fit-content;
}

/* Heading styles */
.review-heading {
    margin-bottom: 30px;
    color: #1f234f;
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    font-weight: unset;
    margin-top: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Flexbox layout */
.review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Review card styles */
.review-card {
    background-color: #f9f9ef;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    /* Three cards per row */
    max-width: 300px;
    /* Optional: limit card size */
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Text styles */
.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.review-stars {
    color: #9A9EF8;
}

.review-author {
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.testdiv {
    justify-content: center;
    display: flex;
    margin-top: 5%;
}

@media (max-width: 549px) {
    .review-grid {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    body {
        background-image: url('Images/Backgrounds/MainBackgroundPhone.png');
    }

    .LogoImage {
        width: 15vw;
    }

    .Slogan {
        font-size: 8vw;
        margin-top: 13%;
    }

    .SubSlogan {
        font-size: 3.5vw;
    }

    .BulletPoints {
        font-size: 1.8vw;
        flex-wrap: wrap;
        width: 50%;
        gap: 20px;
        line-height: 0;
        margin-top: 2%;
    }

    .BulletPoints span {
        width: 40%;
    }

    .BookingButtons {
        flex-direction: column;
        width: 50%;
        gap: 20px;
        margin-top: 7%;
    }

    .left-button,
    .right-button {
        padding: 10px 5px;
        font-size: 3.5vw;
        border-radius: 5px;
    }

    .FAQ {
        margin: 0;
        margin-top: 10%;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .Topics {
        padding: 0;
        order: -1;
    }

    .FAQImage {
        width: 60%;
    }

    .FAQTitle {
        margin: 0;
        margin-top: 5%;
        font-size: 4vw;
        text-align: center;
    }

    .FAQText {
        text-align: center;
        padding: 0% 5%;
        font-size: 3vw;
        margin: 2%;
    }

    .FAQ2 {
        margin: 0;
        margin-top: 10%;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .Topics2 {
        padding: 0;
    }

    .FAQImage2 {
        width: 75%;
    }

    .FAQTitle2 {
        margin: 0;
        margin-top: 5%;
        font-size: 4vw;
        text-align: center;
    }

    .FAQText2 {
        text-align: center;
        padding: 0% 5%;
        font-size: 3vw;
        margin: 2%;
    }

    .ServicesTitle {
        font-size: 5vw;
    }

    .LeftIMG,
    .RightIMG {
        width: 40vw;
    }

    .BundleTitle {
        font-size: 4vw;
    }

    .BundleText {
        font-size: 2.5vw;
    }

    #subcards1,
    #subcards2 {
        flex-direction: column;
    }

    .PriceCard {
        border-radius: 25px;
        padding: 0;
        margin: 5% auto;
        min-width: 90vw;
    }

    .CardTop {
        margin-top: 2%;
    }

    .PriceTitle {
        font-size: 8vw;
        align-self: center;
    }

    .PriceDiscount {
        font-size: 4vw;
        align-self: center;
    }

    .Price {
        font-size: 10vw;
    }

    .feature-list {
        font-size: 4vw;
        margin-left: 5%;
        margin-bottom: 0;
    }

    .PurchaseButton {
        font-size: 7vw;
        height: auto;
        padding: 2% 0;
        width: 90%;
        margin-top: 5%;
    }

    .Badge {
        font-size: 3vw;
        top: -15px;
    }

    .QuestionsTitle {
        font-size: 5vw;
    }

    .preicon {
        font-size: 6vw;
    }

    .plusicon {
        font-size: 6vw;
    }

    .Question {
        font-size: 4vw;
    }

    .QuestionAnswer {
        font-size: 3vw;
    }

    .QuestionsContainer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .review-heading {
        font-size: 5vw;
    }
}