@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');

:root {
    --btn-color: #fdfdfd; /* button color */
    --btn-bg: #7B3F00; /* button bg color */
    --primary-text-color: #7B3F00; /* wine-inspired primary color */
    --secondary-bg-color: #F1EFEC; /* light beige background */
}

html {
    scroll-behavior: smooth;
}

.khula-font {
    font-family: "Khula", sans-serif;
    font-style: normal;
}

.merriweather-font {
    font-family: "Merriweather", serif;
}

body {
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff;
}

header {
    position: fixed;
    top: 0;
    z-index: 20;
    display: flex;
    height: 60px;
    width: 100%;
    padding: 0 10%;
    background-color: transparent;
    color: #fff;
}

header > .collapsible-header {
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    justify-content: flex-start; /* Align items to the left */
    align-items: flex-start; /* Ensure vertical alignment to the left */
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 25px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.header-links:hover {
    background-color: #7B3F00;
    color: #fff;
}

.header-white-bg {
    color: #000;
}

.header-white-bg:hover {
    background-color: #F5F5DC !important;
    color: #7B3F00 !important;
}

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

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 10px 15px;
    width: max-content;
    border-radius: 25px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    background-color: #5A2E00;
    transform: scale(1.05);
}

.input {
    padding: 10px;
    border-radius: 10px;
    outline: none;
    min-width: 100px;
    border: 2px solid #cecece;
    transition: border 0.3s;
}

.input:active, .input:focus, .input:focus-within {
    border: 2px solid #7B3F00;
}

.slides {
    display: none;
    position: relative;
    height: 100%;
}

/* Navigation dots styling */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dots-container .active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

/* ----- the menu here refers to food menu ------- */

.menu-item-container {

}

.menu-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: #fff;
    background-color: #7B3F00;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.menu-btn:hover {
    background-color: #5A2E00;
    color: #fff;
}
/* ----  -------*/

.footer-link {
    color: #fff;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #7B3F00;
}

.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-slide {
    display: none;
    padding: 20px;
    text-align: center;
}

.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stars {
    display: inline-block;
    font-size: 40px;
    cursor: pointer;
}
.stars .star {
    color: #ccc;
    transition: color 0.2s;
}
.stars .star:hover,
.stars .star.active {
    color: gold;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.font-loading {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.font-loaded {
    opacity: 1;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px;
    }
}

@media not all and (min-width: 768px) {
    header .collapsible-header {
        position: absolute;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: flex-start; /* Align items to the left */
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: start; /* Align items to the left */
        background-color: #7B3F00;
        color: white;
        overflow-y: scroll;
    }

    .header-links {
        color: white;
    }
}