@font-face {
  font-family: "Moontime"; /* You choose the name for your font family */
  src: url("fonts/moon-time-regular.ttf") format("truetype"); /* Specify the correct path and format */
  font-weight: normal;
  font-style: normal;
}


body {
    margin: 0px;
    background-color: #F7E2E8;
    position: relative;
}

p {
    font-size: 18px; 
    font-family: 'Inter';
    max-width: 800px;
    margin-right: 0px;
}

.hero {
    height: 100vh;
    background-image: url("Hero-Image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.navbar-logo{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 90px;
    border: 5px solid transparent;
    background-color: transparent;;
}

/* Top Left Logo */
.top-left-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001; /* Above navbar but below hamburger menu */
}

.top-left-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.book-now-nav {
    background-color: black;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
    height: fit-content;
}

.book-now-nav:hover {
    background-color: #DF4E7C;
    color: white;
    cursor: pointer;
}

/* Remove default list styling */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    justify-content: space-around;
    height: fit-content;
    /* margin-left: 50px; */
    margin-right: 80px;
}

.navbar ul {
    list-style-type: none; /* Removes bullet points */
    margin: 0;
    padding: 0;
    overflow: hidden; /* Recommended for float usage */
    background-color: #F7E2E8; /* Adds a dark background color */
    width: fit-content;
    border-radius: 50px;
    height: fit-content;
}

/* Style the list items to be side-by-side */
.navbar li {
    float: left; /* Aligns list items horizontally */
}

/* Style the links */
.navbar li a {
    display: block; /* Makes the entire area clickable */
    color: black; /* Text color */
    text-align: center;
    padding: 14px 16px; /* Spacing inside the links */
    text-decoration: none; /* Removes the default underline */
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
}

/* Change the color of links on hover */
.navbar li a:hover {
    background-color: #DF4E7C; /* Color change on mouse hover */
    color: white;
}

.light-pink-image-overlay {
    height: 100vh;
    width: 100%;
    background-color: rgba(247, 226, 233, 0.5)
}

.hero-content {
    padding: 200px 0px 0px 100px;
}

.home-page .hero .light-pink-image-overlay h1 {
    font-family: "Moontime", sans-serif;
    font-size: 100px;
    color: #DF4E7C;
    margin-top: 30px;
    margin-bottom: 0px;
}

h2 {
    font-family: 'Inter';
    font-family: 'Belleza', sans-serif;
    font-weight: 400;
    color: #DF4E7C;
    font-size: 30px;
}

.home-page .hero .light-pink-image-overlay h2 {
    font-family: 'Belleza', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: black;
    text-transform: uppercase;
    margin-top: 0px;
}

.homepage-booking-button {
    background-color: black;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border: none;
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
    margin-top: 60px;
}

.homepage-booking-button:hover {
    background-color: #DF4E7C;
    color: white;
    cursor: pointer;
}

.about {
    margin: 80px 120px 0px 120px;
}

/* The About title styling*/
nav + section + section > h3 {
    font-family: 'Belleza', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 0px;
    padding: 10px 400px 0px 0px;
}

/* The values and purpose title styling*/
h5 {
    font-family: 'Belleza', sans-serif;
    font-size: 20px;
    /* text-transform: uppercase; */
    /* margin-left: 0px;
    padding: 10px 400px 0px 0px; */
}

.pink-belleza-text {
    font-family: 'Belleza', sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: #DF4E7C;
    margin-left: 100px;
    margin: 20px 0px 40px 0px;
}

/* Padding for the About section */
.home-page > nav + section + section {
    padding: 130px 400px 100px 120px;
}

.hero-images {
    width: 100%;
    height: auto;
}

/* Padding for the purpose and values section */
.values-section {
    /* padding: 130px 400px 100px 120px; */
    /* margin-left: auto;
    margin-right: auto; */
    margin: 0 auto;
    width: 50%
}


.founder-section {
    padding: 130px 400px 100px 120px;
    margin-top: 100px; 
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal-width columns */
    gap: 20px; /* Adds space between the columns */
    width: 100%;
}

.founder-section img {
    height: 100%; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: adds rounded corners to the image */
    margin: 0px 20px 0px 60px;
}






/* Page Hero Styles */
.wellness-page-hero {
    height: 100vh;
    background-image: url("Wellness-Offerings-Hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-position: top;
}

.spiritual-page-hero {
    height: 100vh;
    background-image: url("Spiritual-Offerings-Hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-position: top;
}

.embodiment-page-hero {
    height: 100vh;
    background-image: url("Embodiment-Offerings-Hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-position: top;
}

/*for offerings- has hero image*/
.hero-page-content {
    padding: 580px 0px 0px 0px;
}

/*for products- no hero image*/
.product-hero-page-content {
    padding: 150px 0px 0px 0px;
}

.hero-page-content-subtext {
    background-color: #F7E2E8;
    padding: 20px 20px 30px 80px;
    width: fit-content;
}

.hero-page-content-subtext > .pink-belleza-text {
    margin: 20px 0px 20px 0px;
}

/* section + section {
    padding: 50px 400px 100px 80px;
} */

.hero-page-content-title {
    text-transform: uppercase;
    background-color: #DF4E7C;
    padding: 5px 30px 5px 80px;
    width: fit-content;
    color: white;
    display: inline-block;
}

.offerings-page-description {
    max-width: 60%;
    margin: 50px 0px 80px 0px;
    padding: 10px 400px 100px 80px;
}

.offerings-card-section {
    /* display: flex;
    justify-content: space-between; */
     /* flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 80px 100px 80px;
    gap: 80px;
}

.card {
    position: relative; /*Needed for positioning the button absolutely within the card */
    height: auto;
}

.card-image-wrapper {
    position: relative;
    height: 330px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-wrapper .add-to-cart-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.card > img {
    width: 100%;
    height: auto;
}

.embodiment-card {
    position: relative; /*Needed for positioning the button absolutely within the card */
    height: auto;
}

.embodiment-card .card-image-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.embodiment-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.embodiment-card .card-image-wrapper .add-to-cart-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.products-card-section {
    /* display: flex;
    justify-content: space-between; */
     /* flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0px 80px 100px 80px;
    gap: 40px;
    row-gap: 150px;
}

.products-page-description {
    max-width: 50%;
    margin: 0px 0px 80px 0px;
    padding: 10px 400px 100px 80px;
}

.jewelry-page-hero + section {
    padding-top: 0px;
}

.product-card {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card-image-wrapper {
    position: relative;
    width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-image-wrapper .add-to-cart-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.product-card > img {
    width: 300px;
    height: 350px;
    position: relative;
    z-index: 1;
}

.product-card .container {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.embodiment-page-hero + section + section > .card > img {
    height: fit-content;
    width : auto
}

.card .add-to-cart-button,
.embodiment-card .add-to-cart-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.add-to-cart-button {
    background-color: #DF4E7C;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    border: none;
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.add-to-cart-button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
    transform: scale(1.02);
}

.add-to-cart-button:active {
    background-color: #c23d63;
    transform: scale(0.98);
}

.extra-services-pink-belleza-text {
    font-family: 'Belleza', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #DF4E7C;
    margin-left: 0px;
    margin: 0px 0px 20px 0px;
}

.add-to-cart-button-extra-services {
    background-color: #DF4E7C;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    /* position: absolute; 
    bottom: 2; 
    left: 0;
    right: 0;
    width: fit-content */
}

.extra-services {
    background-color: #FFDDE7;
    border: 1px solid #DF4E7C;
    padding: 20px 25px 20px 25px;
    position: relative; /*Needed for positioning the button absolutely within the card */
    padding-bottom: 30px; /*Needed for positioning the button absolutely within the card */
    height: fit-content
}


.life-is-tricky-image {
    width: 100%;
    height: auto;
    margin-top: -5px;
}

.right-positioned-image {
    position: absolute;
    top: 180px;
    right: 180px;
    width: 500px;
    height: auto;
    border: none;
}

.spiritual-sticky-image {
    /* width: 100%;
    height: auto;
    margin-top: -5px; */
    position: absolute;
    bottom: 210px;
    right: 20px;
    z-index: 10; /* Ensures it is on top */
}

.jewelry-everything-works-image {
    position: absolute;
    top: 130px;
    right: 280px;
    z-index: 10; /* Ensures it is on top */
    width: 300px;
}

.collections-right-positioned-image {
    position: absolute;
    top: 180px;
    right: 150px;
    z-index: 10; /* Ensures it is on top */
    width: 500px;
}








/* Footer styling */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    background-color: #DF4E7C;
    color: white;
    padding: 30px 80px;
    font-family: 'Belleza', sans-serif;
    height: fit-content
}

.footer-title {
    font-size: 60px;
    margin: 0px;
    font-family: "Moontime", sans-serif;
}

.footer-subtitle {
    font-size: 25px;
    text-transform: uppercase;
    font-family: 'Belleza', sans-serif;
    margin-top: 0px;
}

.footer-subtext {
    font-size: 20px;
    max-width: 300px;
    font-family: 'Belleza', sans-serif;
}

.footer-subtext > p, .footer-subtext > a {
    margin: 5px 0px;
    color: white;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
}

.footer-offerings > p {
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
}

.footer-offerings > ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0px;
    text-transform: uppercase;
}

.footer-offerings > ul > li {
    margin-bottom: 10px;
}

.footer-offerings > ul > li > a {
    color: white;
    text-decoration: none
}

.footer-products > p {
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
}

.footer-products > ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0px;
    text-transform: uppercase;
}

.footer-products > ul > li {
    margin-bottom: 10px;
}

.footer-products > ul > li > a {
    color: white;
    text-decoration: none
}


/* Everything here checks out*/
@media (max-width: 1440px) {
    .founder-section {
        padding: 100px 300px 80px 60px;
        gap: 100px;
    }
    .founder-section img {
        margin: 0px;
        width: 70%;
        height: auto;
    }
    .products-card-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 0px 60px 80px 60px;
        gap: 40px;
        row-gap: 120px;
    }
    .card-image-wrapper {
        height: 320px;
    }
    .embodiment-card .card-image-wrapper {
        height: 340px;
    }
    .product-card-image-wrapper {
        width: 280px;
        height: 330px;
    }
    .product-card > img {
        width: 280px;
        height: 330px;
    }
    .product-card .container {
        width: 280px;
    }
    .jewelry-everything-works-image {
        width: 250px;
        right: 200px;
        top: 100px;
    }
    .collections-right-positioned-image {
        width: 400px;
        right: 100px;
        top: 200px;
    }
    .spiritual-sticky-image {
        right: 150px;
    }
}

/* This is all good */
@media (max-width: 1213px) {
    /* .founder-section {
        padding: 100px 300px 80px 60px;
        gap: 100px;
    } */
    .collections-right-positioned-image {
        right: 50px;
        top: 400px;
    }
    .founder-section img {
        margin: 100px 0px;
        width: 70%;
        height: auto;
    }
    .spiritual-sticky-image {
        right: 100px;
        bottom: 215px;
    }
}


/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-toggle {
    display: none; /* Hidden checkbox for toggle functionality */
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background-color: #F7E2E8;
    border-radius: 5px;
    border: 2px solid #DF4E7C;
}

.hamburger-icon span {
    width: 25px;
    height: 3px;
    background-color: #DF4E7C;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-toggle:checked + .hamburger-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-toggle:checked + .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle:checked + .hamburger-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #F7E2E8;
    transition: left 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-toggle:checked ~ .mobile-nav {
    left: 0;
}

.hamburger-menu:has(.hamburger-toggle:checked) ~ .top-left-logo {
    display: none;
}

.mobile-nav ul {
    list-style-type: none;
    padding: 0px;
    background-color: #F7E2E8;
    border-radius: 10px;
    min-width: 280px;
    max-width: 90%;
    position: relative;
    z-index: 1000;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #DF4E7C;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    font-weight: bold;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #b83d5a;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav li:last-child a {
    border-bottom: none;
}

.mobile-nav li a {
    display: block;
    padding: 18px 30px;
    color: black;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    transition: background-color 0.3s;
    text-align: left;
    border-bottom: 1px solid rgba(223, 78, 124, 0.1);
}

.mobile-nav li a:hover,
.mobile-nav li a.book-now-mobile:hover {
    background-color: #DF4E7C;
    color: white;
}

.mobile-nav li a.book-now-mobile {
    background-color: black;
    color: white;
    text-align: center;
    margin: 20px 30px 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    border-bottom: none;
}

.mobile-nav li a.book-now-mobile:hover {
    background-color: #DF4E7C;
    color: white;
}

/* Responsive Design */

/* This is all good*/
@media (max-width: 1100px) {
    .offerings-card-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 0px 60px 80px 60px;
        gap: 30px;
    }
    .card {
        margin-bottom: 100px;
    }
    .spiritual-sticky-image {
        right: 0px;
        bottom: 210px;
        width: 30%;
    }
    .jewelry-everything-works-image {
        top: 200px;
        right: 100px;
    }
    footer {
        gap: 30px;
        padding: 30px 50px;
    }
    .footer-title {
        font-size: 45px;
        width: 100%;
        white-space: nowrap;
    }
    .footer-subtitle {
        font-size: 18px;
        white-space: nowrap;
    }
}

/* This is good*/
/* Tablet and smaller laptop styles (768px to 1024px) */
@media (max-width: 1024px) {
    .navbar {
        margin-right: 20px;
    }

    .hero-content {
        padding: 150px 0px 0px 50px;
    }

    .home-page .hero .light-pink-image-overlay h1 {
        font-size: 80px;
    }

    .home-page .hero .light-pink-image-overlay h2 {
        font-size: 25px;
    }

    .homepage-booking-button {
        font-size: 18px;
        margin-top: 40px;
    }

    .home-page > nav + section + section {
        padding: 100px 200px 80px 60px;
    }

    .values-section {
        width: 70%;
    }

    .founder-section {
        /* padding: 100px 200px 80px 60px; */
        padding: 0px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-section > div {
        max-width: 80%;
        margin: 0 auto;
    }

    .founder-section img {
        margin: 0 auto;
        width: 40%;
        height: auto;
        margin-bottom: 100px;
    }

    .hero-page-content {
        padding: 600px 0px 0px 0px;
    }

    .hero-page-content-subtext {
        padding: 20px 20px 20px 40px;
    }

    .hero-page-content-title {
        padding: 5px 20px 5px 40px;
        display: inline-block;
    }

    .offerings-page-description {
        max-width: 80%;
        padding: 10px 200px 80px 40px;
    }

    .offerings-card-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 0px 40px 80px 40px;
        gap: 40px;
    }

    .card-image-wrapper {
        height: 300px;
    }

    .embodiment-card .card-image-wrapper {
        height: 320px;
    }

    .products-card-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 0px 40px 80px 40px;
        gap: 30px;
        row-gap: 100px;
    }

    .products-page-description {
        max-width: 50%;
        padding: 10px 200px 80px 40px;
    }

    .product-card-image-wrapper {
        width: 280px;
        height: 330px;
    }

    .product-card > img {
        width: 280px;
        height: 330px;
    }

    .product-card .container {
        width: 280px;
    }

    .right-positioned-image {
        width: 400px;
        right: 100px;
        top: 150px;
    }

    .spiritual-page-hero + section + .offerings-card-section {
        margin-bottom: 700px;
    }

    .spiritual-sticky-image {
        right: 200px;
        bottom: 620px;
    }

    .jewelry-everything-works-image {
        width: 250px;
        right: 120px;
        top: 150px;
    }

    .collections-right-positioned-image {
        width: 400px;
        right: 60px;
        top: 400px;
    }

    footer {
        padding: 30px 40px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-title {
        font-size: 200px;
        /* margin: 0 auto;
        width: 100%; */
    }

    .footer-subtitle {
        font-size: 70px;
    }

    .footer-subtext {
        max-width: 250px;
    }
}

/*This is good*/
/* Phone styles (up to 767px) */
@media (max-width: 767px) {
    .navbar {
        display: none; /* Hide regular navbar on mobile */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu on mobile */
    }

    .top-left-logo {
        top: 10px;
        left: 10px;
    }

    .top-left-logo img {
        width: 80px;
        height: 80px;
    }
    p {
        font-size: 16px;
        max-width: 100%;
    }

    .navbar {
        position: static;
        margin: 10px;
        justify-content: center;
        /* width: fit-content; */
        max-width: 95%;
    }

    .navbar ul {
        width: 70%;
        border-radius: 25px;
    }

    .navbar li {
        float: none;
        display: inline-block;
    }

    .navbar li a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .book-now-nav {
        font-size: 14px;
        padding: 8px 12px;
    }

    .hero-content {
        padding: 200px 20px 0px 20px;
        text-align: center;
    }

    .home-page .hero .light-pink-image-overlay h1 {
        font-size: 50px;
        margin-top: 20px;
    }

    .home-page .hero .light-pink-image-overlay h2 {
        font-size: 20px;
    }

    .homepage-booking-button {
        font-size: 16px;
        margin-top: 30px;
        padding: 8px 12px;
    }

    .home-page > nav + section + section {
        padding: 60px;
    }

    .pink-belleza-text {
        font-size: 28px;
        margin-left: 0px;
        text-align: left;
    }

    .values-section {
        width: 80%;
        margin: 60px;
    }

    .founder-section {
        /* padding: 100px 200px 80px 60px; */
        padding: 0px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-section > div {
        max-width: 80%;
        margin: 0 auto;
    }

    .founder-section img {
        margin: 0 auto;
        width: 40%;
        height: auto;
        margin-bottom: 100px;
    }

    .hero-page-content {
        padding: 600px 0px 0px 0px;
    }

    .hero-page-content-subtext {
        padding: 15px 15px 15px 60px;
        width: 90%;
        margin: 0 auto;
    }

    .hero-page-content-title {
        padding: 5px 15px 5px 20px;
        font-size: 18px;
        display: inline-block;
    }

    .offerings-page-description {
        max-width: 90%;
        padding: 10px 60px 60px 60px;
        margin: 30px 0px 60px 0px;
    }

    .offerings-card-section {
        grid-template-columns: 1fr;
        padding: 0px 20px 0px 20px;
        gap: 40px;
        margin: 0px 40px;
    }

    .spiritual-page-hero + section + .offerings-card-section {
        margin-bottom: 0px;
    }

    .card {
        height: auto;
        margin-bottom: 150px;
    }

    .card-image-wrapper {
        height: 250px;
    }

    .embodiment-card {
        height: auto;
        margin-bottom: 150px;
    }

    .embodiment-card .card-image-wrapper {
        height: 270px;
    }

    .embodiment-card > img {
        width: 100%;
        height: auto;
    }

    .product-hero-page-content {
        padding: 70px 0px 0px 0px;
    }

    .products-card-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 0px 20px 60px 20px;
        gap: 20px;
        row-gap: 80px;
    }

    .products-page-description {
        max-width: 90%;
        padding: 10px 50px 60px 60px;
        margin: 0px 0px 60px 0px;
    }

    .product-card {
        height: auto;
        margin-bottom: 50px;
    }

    .product-card-image-wrapper {
        width: 100%;
        height: auto;
    }

    .product-card > img {
        width: 100%;
        height: auto;
    }

    .product-card .container {
        width: 100%;
    }

    .add-to-cart-button {
        width: 100%;
        position: absolute;
        bottom: 0;
        top: auto;
        margin-top: 0;
    }

    .extra-services {
        padding: 15px 20px 25px 20px;
        margin-bottom: 100px;
    }

    .right-positioned-image {
        position: static;
        width: 100%;
        margin: 20px 0px;
    }

    .spiritual-sticky-image {
        position: static;
        width: 100%;
        margin: 0px;
        bottom: 200px;
    }

    .jewelry-everything-works-image {
        position: static;
        width: 50%;
        margin: 20px 200px;
    }

    .collections-right-positioned-image {
        position: static;
        width: 100%;
        margin: 20px 0px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .footer-title {
        font-size: 40px;
    }

    .footer-subtitle {
        font-size: 18px;
    }

    .footer-subtext {
        max-width: 100%;
    }

    h2 {
        font-size: 24px;
    }

    h5 {
        font-size: 18px;
    }
}

/* Very small phone styles (up to 430px) */
@media (max-width: 440px) {
    .navbar {
        display: none; /* Hide regular navbar on very small screens */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu on very small screens */
    }

    .top-left-logo {
        top: 5px;
        left: 5px;
    }

    .top-left-logo img {
        width: 100px;
        height: 100px;
    }
    .navbar {
        max-width: 100%;
        margin: 5px;
    }

    .navbar ul {
        width: 90%;
    }

    .navbar li a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .book-now-nav {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero {
        background-position: 20% 75%;
    }

    /* .hero + section {
        margin: 80px 35px 0px 35px;
    } */

    .about {
        margin: 80px 35px 0px 35px;
    }

    .hero-content {
        padding: 150px 15px 0px 15px;
    }

    .home-page .hero .light-pink-image-overlay h1 {
        font-size: 70px;
    }

    .home-page .hero .light-pink-image-overlay h2 {
        font-size: 25px;
    }

    .homepage-booking-button {
        font-size: 20px;
        padding: 6px 10px;
    }

    .home-page > nav + section + section {
        padding: 40px 0;
    }

    .pink-belleza-text {
        font-size: 24px;
    }

    .values-section {
        width: fit-content;
        /* margin: 40px 10px; */
        margin: 80px 35px 0px 35px;
    }

    .founder-section {
        gap: 20px;
        margin: 80px 35px 0px 35px;
        max-width: fit-content;
    }

    .founder-section > div {
        max-width: 100%;
        margin: 0 auto;
    }

    .founder-section img {
        width: 60%;
        margin-bottom: 50px;
    }

    .hero-page-content {
        padding: 660px 0px 0px 0px;
    }

    .hero-page-content-subtext {
        padding: 12px 35px 100px 30px;
        width: fit-content;
        margin-right: 0px;
    }

    .hero-page-content-title {
        padding: 4px 20px 4px 35px;
        font-size: 16px;
        width: fit-content;
        display: inline-block;
    }

    .collections-break {
        display: block;
    }

    .offerings-page-description {
        padding: 10px 35px 40px 35px;
        margin: 100px 0px 100px 0px;
    }

    .offerings-card-section {
        padding: 0px 0 0px 0;
        margin: 0px 35px;
        gap: 30px;
    }

    .card {
        margin-bottom: 100px;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .embodiment-card {
        margin-bottom: 100px;
    }

    .embodiment-card .card-image-wrapper {
        height: 220px;
    }

    .product-hero-page-content {
        padding: 150px 0px 0px 0px;
    }

    .products-card-section {
        grid-template-columns: 1fr;
        padding: 0px 35px 40px 35px;
        gap: 15px;
        row-gap: 60px;
    }

    .products-page-description {
        padding: 10px 0 40px 0;
        margin: 0 35px;
    }

    .product-card {
        margin-bottom: 40px;
    }

    .product-card-image-wrapper {
        width: 100%;
        height: auto;
    }

    .product-card > img {
        width: 100%;
        height: auto;
    }

    .product-card .container {
        width: 100%;
    }

    .add-to-cart-button {
        width: 100%;
        position: absolute;
        bottom: 0;
        top: auto;
        margin-top: 0;
    }

    .extra-services {
        padding: 12px 15px 20px 15px;
        margin-bottom: 80px;
    }

    .jewelry-everything-works-image {
        width: 70%;
        /* margin: 0 auto 100px auto; */
        margin-left: 15%;
        margin-right: 15%;
    }

    .collections-right-positioned-image {
        margin: 0px 0px 100px 0px;
    }

    footer {
        padding: 15px;
    }

    .footer-title {
        font-size: 30px;
    }

    .footer-subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .top-left-logo {
        display: none;
    }
}