@import "tailwindcss";
@import "flowbite";

/* Define CSS Variables Correctly */
:root {
    --color-primary: rgb(32, 31, 31);
    --color-accent: #ffdd00;
    --color-bgPrimary: #ffffff;
}

* {
    font-family: "Jost", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

footer {
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

#footer {
    display: block;
    visibility: visible;
}

/* Use CSS Variables for Colors */
.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-bgPrimary {
    color: var(--color-bgPrimary);
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: fill;
}

* {
    font-family: "Jost", sans-serif;
}

body {
    background-color: rgba(247, 247, 239, 0.116);
}

.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-bgPrimary {
    color: var(--color-bgPrimary);
}

.swiper {
    width: 100%;
    height: 400px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000; /* Ensure it's above everything */
}

.navbar-burger {
    position: relative;
    z-index: 1100; /* Ensure it's clickable */
}

/* home-page-gallery */

.swiper {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 50%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

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

#footer {
    display: block;
    visibility: visible;
}


