* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --tan: rgb(157,110,67);
}

body {
    height: 100%;
    width: 100%;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: var(--tan);
    color: black;
}

body.dark-mode .navbar,
body.dark-mode .footer,
body.dark-mode .header {
    background-color: var(--tan);
}
/* -- HEADER START ---*/

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b06a7a;
    border-radius: 999px;
    padding: 10px 30px;
    width: 80%;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.name {
    float: left;
    padding: 0 5px 0 5px;
    margin-left: 13px;
    font-family: 'Raleway';
    color: white;
}

.name h2 a {
    color: rgb(59,35,17);
    font-size: 20px;
    text-decoration: none;
    color: white;
}


/* -- MAIN START --*/
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;

}
.links {
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: auto;
    text-align: center;
    padding-right: 10px;
}

.links a {
    text-decoration: none;
    color: rgb(59,35,17);
    font-size: 14px;
    font-family: 'Raleway';
    font-weight: bold;
    margin-right: 35px;
    color: white;
}

.links a:hover {
    background-color: rgba(99, 60, 30, 0.342);
    transition: .6s all ease-in-out;
    padding: 10px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: rgb(255, 209, 185);
        z-index: 1;
    }

    .name h2 a {
        color: rgb(59,35,17);
        font-size: 16px;
        text-decoration: none;
    }

    .links a {
        margin: 10px 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .show-menu {
        display: flex !important;
    }
}
/* --- HEADER END ---*/ 
.main {
    display: flex;
    flex-direction: column;
}

.top-main {
    width: auto;
    height: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url(flower.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.top-main-textbox {
    /*background-color: rgba(232, 174, 103, 0.743);*/
    /*border: 2px solid rgb(109, 56, 15);*/
    background-color: #ffffff05;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(30%);
    margin-right: 6rem;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 1px 1px 5px 1px rgb(101, 49, 3);
    margin-top: 7%;
    margin-left: 5rem;
}

.top-main-textbox:hover {
    transition: all .5s ease-in-out;
}

.top-main-textbox h1 {
    font-size:40px;
    text-align: left;
    font-family: 'Raleway';
}

.top-main-textbox p {
    font-size: 22px;
    text-align: left;
}

.top-main-btn {
    width: 25%;
    margin-top: 2rem;
    border: none;
    border-radius: 10px;
    padding: 3px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* faster in, slower out */
}

.top-main-btn:hover {
    transform: scale(1.2);
}

.top-main-btn a {
    text-decoration: none;
    color: var(--tan);
}
/* Modal background */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: white;
  margint-top: 30%;
}

/* Modal box */
.modal-content {
  background-color: white;
  width: 85vw;
  height: 75vh;
  padding: 100px;
  box-sizing: border-box;
  position: relative;
  margin: auto; /* Centers it inside the modal-overlay */
  top: 50%;
  margint-top: 30%;
  transform: translateY(-50%); /* Perfect vertical centering */
  font-family: 'Segoe UI', sans-serif;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; /* allows scroll if content gets too tall */
}


/* Close (X) button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Form elements */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content label {
  font-weight: bold;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 2px;
  width: 100%;
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  background-color: black;
  color: white;
  padding: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.topimg {
    background-image: url(beckynice.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 6rem;
    padding-bottom: 6rem;
    height: 60%;
    width: 50vw;
    min-width: 400px;
    min-height: 300px;
    max-height: 300px;
    margin-top: 10%;
    margin-bottom: 5%;
}

@media (max-width: 900px) {
    .top-main-textbox {
        width: auto;
    }
}
@media (max-width: 718px) {
    .top-main {
        /*display: grid;
        grid-template-columns: 2fr;
        grid-column: auto;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100;
    }

    .top-main-textbox {
        width: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 75%;
    }

    .top-main-btn {
        width: 80px;
        height: 30px;
    }
}
@media (max-width: 440px) {
    .top-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
    }
}

/* --- Offerings START ---*/

/* Main Offerings Section */
.offerings-section { /* soft pink */
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    
}


/* Heading */
.offerings-section h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

/* Grid container */
.offerings-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    
}

/* Individual Card */
.offer-card {
    background-color: white;
    border: 1px solid #d9b4b4;
    border-radius: 12px;
    width: 240px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 2px 20px .1px rgb(0, 0, 0);
}

.offer-card:hover {
    transform: scale(1.03);
}

/* Image Placeholder */
.offer-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #eee;
}

/* Card Title */
.offer-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 0.5rem;
    color: #333;
    text-align: center;
}

/* Button */
.learn-more-btn {
    background-color: #c88a9d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    transform: scale(1.1);
}

/* -- BTM CONTAINER --*/

.btm-main {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(flower.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    gap: 5rem;
    margin-top: 2rem;
    
}

.btm-main-textbox {
    background-color: #ffffff05;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(30%);
    height: 10rem;
    padding: 30px;
    margin-top: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 1px 1px 5px 1px rgb(101, 49, 3);
}

.btm-main-textbox h1 {
    font-size:40px;
    text-align: left;
}

.btm-main-textbox p {
    font-size: 14px;
}

.aboutbtn {
    width: 35%;
    height: 30px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 2rem;
    transition: all 0.5s cubic-bezier(0.1, 0, 0.2, 1); /* faster in, slower out */
}

.aboutbtn:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.aboutbtn p {
    color: var(--tan);
}

.btmimg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 6rem;
    padding-bottom: 6rem;
    height: 50%;
    width: 30%;
    border-radius: ;
}

/* -- TESTIMONIALS --*/

.testimonials-section {
    padding: 3rem 2rem;
    font-family: 'raleway', sans-serif;
    font-weight: bold;
    color: #111;
}

.testimonials-section h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'raleway', sans-serif;
    font-weight: bold;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #e6bb89;
    position: relative;
    width: 300px;
    min-height: 140px;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top-left square "tab" */
/*.testimonial-tab {
    width: 20px;
    height: 20px;
    background-color: #a85c32;
    position: absolute;
    bottom: -4px;
    left: -5px;
    border-radius: 4px;
}

/* Bottom-right quote image */
.testimonial-card img.quote-icon {
    width: 50px;
    position: absolute;
    top: -20px;
    right: -10px;
}

/* -- FOOTER --- */

.footer {
    margin: 50px;
    padding-bottom: 50px;
    border-radius: 20px;
    padding: 20px;
    background-color: #d697a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ft-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ft-name {
    border: 2px solid rgb(59,35,17);
    font-family: 'Raleway';
    padding: 10px;
    font-size: 14px;
}

.ft-name a {
    color: white;
    text-decoration: none;
}

.ft-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ft-links a {
    text-decoration: none;
    color: white;
}

.ft-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.copy {
    margin-top: 10px;
    font-size: 12px;
    color: white;
}

.fb,
.insta,
.twitter,
.tiktok {
    width: 30px;
}

@media (max-width: 768px) {
    .footer {
        padding: 10px;
    }

    .ft-links {
        flex-direction: column;
        align-items: center;
    }

    .ft-icons {
        flex-direction: column;
        align-items: center;
    }

    .copy {
        text-align: center;
    }
}

/* ---- About me page ----*/

.about-body {
    height: 100vh;
    width: 100vw;
    background-image: url('flower.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.top-main-about {
    margin-top: 25%;
}

.aboutme-top-main-textbox {
    background-color: #ffffff05;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(30%);
    margin-right: 6rem;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 1px 1px 5px 1px rgb(101, 49, 3);
    margin-top: 7%;
    margin-left: 5rem;
}

