*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

.navbar {
    display: flex;
    position: sticky;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #774213;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.title {
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    margin: 0;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.title:hover {
    text-decoration: none;
    color: inherit;
}

.nav-tabs {
    display: flex;
    gap: 1.3rem;
}

.nav-tabs a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-tabs a:hover {
    color: #007BFF;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .title {
        display: block;
        margin: 0 auto;
    }

    .nav-tabs {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .nav-tabs a {
        padding-left: 0;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 1rem;
    }

    .hours-column,
    .machine-prices {
        width: 90%;
        max-width: none;
        flex-direction: column;
    }

    .slide {
        display: none;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
        opacity: 1 !important;
        z-index: 1;
    }

    .slideshow {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        box-sizing: border-box;
        margin-top: 1rem;
    }

    .image_select {
        position: static !important;
        margin: 0.5rem auto 0;
        text-align: center;
        right: auto !important;
        bottom: auto !important;
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        z-index: 100;
    }

    .slide.active {
        display: block !important;
    }
}

.slideshow {
    width: 100vw;
    height: 100vh;
    flex: 1;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.slide {
    width: 90%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.image_select {
    position: absolute;
    bottom: 10px;
    right: 23rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #000000;
}

.store-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
    gap: 2rem;
    box-sizing: border-box;
}

.hours-column,
.machine-prices {
    background-color: #fff8ee;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    display:flex;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    flex-shrink: 0;
    width: 20%;
    min-width: 200px;
}

.machine-information h3,
.store-information h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #774213;
    font-size: 1.5rem;
}

.machines,
.hours-of-operation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.machines li,
.hours-of-operation li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.machines li:last-child,
.hours-of-operation li:last-child {
    border-bottom: none;
}

.machine,
.operation {
    font-weight: bold;
    color: #000000;
    text-align: left;
}

.price {
    font-weight: bold;
    color: #000000;
    text-align: right;
}