body {
    font-family: 'Jost', sans-serif;
    background-color: #FCFBDB !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    
}
.navbar {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Didot', serif;
    color: #FCFBDB !important;
}

.navbar-brand:hover {
    color: #594B3D !important;
}

.navbar-nav .nav-link {
    color: #FCFBDB !important;
}

.navbar-nav .nav-link:hover {
    color: #594B3D !important;
}

.navbar-toggler {
    margin-left: auto;
    color: #FCFBDB; /* Ensure the toggler button is visible */
    border: none; /* Remove default border */
}

/* Media query for mobile and tablet */
@media (max-width: 992px) {
    .navbar-brand {
        order: 1; /* Move brand to the end */
        margin-left: auto; /* Align brand to the right */
    }

    .navbar-toggler {
        order: 2; /* Move toggler to the start */
        margin-right: auto; /* Align toggler to the left */
    }

    .navbar-nav {
        order: 3; /* Ensure the navigation links are on the left */
    }
}
.navbar-nav .nav-item {
    display: block; /* Make nav items block level */
    margin: 10px 0; /* Add some margin for spacing */
}

.navbar-toggler .navbar-close-icon {
    display: none;
    font-size: 1.5rem;
    color: #FCFBDB;
}

.navbar-toggler.collapsed .navbar-close-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .navbar-close-icon {
    display: inline;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    display: none;
}

.collapse.show .navbar-nav {
    display: block;
    background-color: #000000;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navbar-nav .nav-item {
    width: 100%;
}

.navbar-nav .nav-link {
    padding: 10px 0;
    display: block;
}








.footer {
    background-color: #FCFBDB;
    color: #000000;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    margin-top: auto;
}

/* Font for headers */
h1, h2, h3, h4, h5, h6 { 
    font-family: 'EB Garamond', serif;
    font-weight: 700;
}

p {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

/* Coming Soon Page Styles */
.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 20px;
    margin: 0 auto;
    background-color: #FCFBDB; 
}

.coming-soon h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.5rem;
}

/* newsletter Page Styles */
.square {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.subscribe {
    margin-top: 50px;
    padding: 30px;
    background-color: #FCFBDB;
    color: #000000;
    border: 1px solid #594B3D;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.subscribe h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
}

.subscribe p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe input[type="email"] {
    width: 80%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #594B3D;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #F5F5F5;
}

.subscribe input[type="submit"] {
    padding: 15px 30px;
    font-size: 1em;
    background-color: black;
    color: #FCFBDB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.subscribe input[type="submit"]:hover {
    background-color: #594B3D;
    color: black;
}

/* About Page Styles */

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
}
.carousel {
    position: relative;
    width: 80%;
    max-width: 600px; 
    height: 60vh;
    max-height: 300px;
    margin: auto;
    overflow: hidden;
    border: 2px solid #594B3D;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 50px 50px;
    background-color: #FCFBDB; 
    height: 100%; /* Ensure slides fill the carousel height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    align-items: center; /* Center text horizontally */
    border-radius: 10px;
    position: relative;
}

h2 {
    color: black;
    font-family: 'EB Garamond', serif; /* Use header font from your styles */
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px; 
}

p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

button {
    position: absolute;
    top: 50%;
    background-color: #594B3D;
    color: #FCFBDB;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transform: translateY(-50%);
    z-index: 1;
    transition: background-color 0.3s ease, color 0.3s ease; /* Hover effect transition */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

button:hover {
    background-color: black;
    color: #FCFBDB;
}

.flower {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('flower.svg') no-repeat center center / contain;
}

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

.flower.bottom-right {
    bottom: 10px;
    right: 10px;
}


