body {
    margin: 0;
    padding: 0;
    background-color: #f9f5eb; /* Soft Beige */
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;
    overflow-y: auto;
    --can-scroll: visible;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: radial-gradient(farthest-side at 50% 0, rgb(0 0 0 / 0.25), rgb(0 0 0 / 0));
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: radial-gradient(farthest-side at 50% 100%, rgb(0 0 0 / 0.25), rgb(0 0 0 / 0));
}

@keyframes reveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body::before,
body::after {
    animation-name: reveal;
    animation-fill-mode: both;
    visibility: var(--can-scroll);
}

h1 {
    margin: 0;
    font-family: Garamond, Georgia, Times, serif;
    font-size: 35px;
    letter-spacing: 3px;
    text-align: center;
    color: #333333; /* Dark Slate */
}

h3 {
    margin: 0;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #6c8f6c;
}

p {
    margin: 4px;
    text-align: center;
    color: #333333; /* Dark Slate */
}

#top-image {
    width: 100%;
    height: 70vh;
    background-image: url(img/storefront.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #top-image {
        height: 30vh; /* Reduce height on smaller screens */
        background-size: 110%;
        background-attachment: scroll;
        background-repeat: no-repeat;
    }
}

#title {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px double #e4a34e; /* Warm Terracotta */
    border-bottom: 4px double #e4a34e; /* Warm Terracotta */
    background-color: rgba(255, 255, 255, 0.9); /* Light Cream */
}

.row.double {
    height: 320px;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-us {
    width: 50%;
    padding: 20px;
    background-color: #fff5e6; /* Light Cream */
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    height: 100%;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 10000%;
    height: 100%;
}

.slider img {
    flex: 1 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.buttons {
    width: 0.8rem;
    height: 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: #e4a34e; /* Warm Terracotta */
    opacity: 0.75;
    transition: opacity ease 250ms, transform 250ms;
}

.buttons:hover {
    opacity: 1;
    transform: scale(1.2);
}

.hours {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 4px double #e4a34e; /* Warm Terracotta */
    border-bottom: 4px double #e4a34e; /* Warm Terracotta */
    background-color: #fff5e6; /* Light Cream */
}

.contact {
    background-color: #fff5e6; /* Light Cream */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
