/* Background color for the entire page */
body {
    background-color: #fcf3e2;
    margin: 0;
    font-family: Arial, sans-serif; /* Adjust font as needed */
}

/* Logo and Navbar as side-by-side elements */
.header-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    background-color: #fef6e3;
    padding: 10px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    flex: 0 0 auto;
    margin-right: 20px;
}

.logo img {
    width: 140px;
    height: auto;
    border-radius: 70px;
}

#navbar-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#navbar ul li {
    display: inline-block;
}

#navbar ul li a {
    display: block;
    color: #2779a9;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    transition: all 0.3s ease-in;
}

#navbar ul li a:hover {
    background-color: #bd91d9;
    color: #fcf3e2;
}

@media screen and (max-width: 768px) {
    .logo img {
        width: 80px;
    }

    .header-flex-container {
        flex-direction: column;
        align-items: center;
    }

    #navbar-container {
        flex-direction: column;
        padding: 10px;
    }

    #navbar ul {
        flex-direction: column;
        align-items: center;
    }

    #navbar ul li a {
        padding: 10px;
    }
}

/* Styles for the header */
header {
    text-align: center;
    padding: 1px;
}

h1 {
    margin: 0px 0;
}

h2 {
    margin: 0px 0;
}

button {
    padding: 10px 20px;
}

footer {
    text-align: center;
}


.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    padding: 20px;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 80%;
    max-width: 25%;
    max-height: 95vh;
    border-radius: 8px;
    position: relative;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: contain;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

#caption {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100;
    width: 100%;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 12px 20px;
    cursor: pointer;
    z-index: 1001;
}

#prevButton {
    left: 3%;
}

#nextButton {
    right: 3%;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    z-index: 1002;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-content p {
    font-size: 18px;
    margin: 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery {
    display: inline-flex;
    gap: 10px;
}

.gallery img {
    height: auto;
    max-width: 100%;
    width: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #fcf3e2;
    background-color: #fcf3e2;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #03b5d2;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #2779a9;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #bd91d9;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #bd91d9;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before,
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion button .icon::before {
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #bd91d9;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

#accordion-button-2[aria-expanded=true] + .accordion-content {
    padding-bottom: 0px;
}

.banner-container {
    text-align: center;
    width: 100%;
    margin: 0;
}

.banner-container img {
    width: 150px;
    height: auto;
    border-radius: 70px;
}

#navbar-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #fef6e3;
    padding: 10px;
    text-align: center;
    gap: 10px;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#navbar ul li {
    display: inline-block;
}

#navbar ul li a {
    display: block;
    color: #2779a9;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    transition: all 0.3s ease-in;
}

#navbar ul li a:hover {
    background-color: #bd91d9;
    color: #fcf3e2;
}

hr {
    margin-top: 0px;
    height: 1px;
    width: 100%;
    background-color: rgba(199, 187, 187, 0.5);
    border: none;
}

.faq-container {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 15px 80px 30px;
    background-color: #faf3e6;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.verticalLine {
    border-left: solid #d6d4d49e;
    padding-left: 20px;
    padding-right: 140px;
}

.social-links a {
    display: inline-block;
    width: 18px;
    height: 18px;
    text-align: center;
    vertical-align: middle;
}

.social-links .fab {
    font-size: 18px;
    vertical-align: middle;
    display: inline-block;
    margin: 2px;
}

.fab {
    padding: 5px;
    margin-left: 15px;
    text-align: top;
    text-decoration: none;
}

.fab:hover {
    opacity: 0.7;
}

.fab.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-instagram {
    background: #E4405F;
    color: white;
}

.fa-tiktok {
    background: #000000;
    color: white;
}

.about-module {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-module--block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.about-module--block_copy {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.about-module--subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
}

.about-module--copy {
    font-size: 1.2em;
    line-height: 1.6;
}

.about-module--block_image {
    flex: 1;
    text-align: center;
}

.about-module--block_img {
    border-radius: 8px;
    max-width: 76%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-module {
        flex-direction: column;
    }

    .about-module--block {
        flex-direction: column;
        align-items: center;
    }

    .about-module--block_image {
        margin-top: 0px;
    }
}
