img {
    max-width: 100%;
    height: auto;
    display: block;
}

html,body {
    scroll-behavior:smooth;
    max-width:100%;
    overflow-x:hidden;
}

section, footer {
    scroll-margin-top:90px;
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
}

.gallery {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
}

.hero {
    height:600px;
    background-image:none;
    background-size:cover;
    background-position:center;
    position: relative;
    width:100%;
    overflow:hidden;
}

.hero img {
    width:110%;
    max-width:none;
    height:100%;
    object-fit:cover;
    position: relative;
    left: -10%;
}

.hero::after {
        content: "";
        position:absolute;
        inset:0;
        background:rgba(0, 0, 0, 0.18);
    }

.hero-text {
    position:absolute;
    z-index:2;
    left:50%;
    top:50px;
    transform:translate(-50%, -50%);

    color:white;
    text-align:center;
    width:90%;
}

.menu-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #8b6b4a;
}

.multi-price {
    display:block;
}

.menu-item h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.menu-item > p {
    margin: 0 0 6px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0 3px 20px;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 30px;
}

.heart-divider > span:not(.heart) {
    width: 45px;
    height: 1px;
    background-color: #8b6b4a;
}

.heart-divider .heart {
    color: #8b6b4a;
    font-size: 18px;
    line-height: 1;
}

.site-header {
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:35px 35px;
    border-bottom: 1px solid #634a38
}

.logo {
    text-decoration:none;
    color:#ddd;
    font-family: "Allura", cursive;
    font-size:2.3rem;
    font-weight:400;
}

.navigation {
    display:flex;
    align-items:center;
    gap:25px
}

.navigation a {
    text-decoration:none;
    color:#ddd;
}

.book-button {
    padding: 10px 18px;
    background-color: #795548;
    color: white !important;
    border-radius:6px;
    text-decoration:none;
}

.site-footer {
    background-color: #634a38;
    color: #e7e0d3;
    padding: 50px 40px 20px;
}

.footer-content {
   max-width: 1100px;
   margin: 0 auto;
   display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h3 {
    margin: 0 0 15px;
    font-size: 1.2rem;
}

.footer-section p {
    margin: 6px 0;
}

.footer-heading {
    display: grid;
    grid-template-columns:25px auto;
    align-items:center;
    gap: 12px;

    margin-bottom: 20px;
}

.footer-hreading h3 {
    margin: 0;
    line-height:1;
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit:contain;
    transform:translateY(-7px);
}

.footer-section a {
    color: #e7e0d3;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.hours-row {
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:6px 0;
}

.social-links {
    display:flex;
    gap:15px;
}

.social-icon {
    width:24px;
    height:24px;
}

.footer-bottom {
    max-width:1100px;
    margin:35px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(231, 224, 211, 0.3);
    text-align:center;
    font-size:0.9rem;
}

.footer-map {
    width:100%;
    height:300px;
    border:0;
}

@media (max-width:768px) {
    .gallery {
        grid-template-columns:repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
    }

    .site-header {
        padding: 18px 20px;
        min-height:70px
    }

    .logo {
        font-size: 2rem;
        white-space: nowrap;
    }

    .navigation {
        gap: 10px;
    }

    .navigation > a:not(.book-button) {
        display: none;
    }

    .book-button {
        padding: 10px 14px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hero {
        height: 350px;
        background-position:center;
    }

    .hero-text h1 {
        font-size:1.7rem;
    }

    .menu-section {
        padding: 30px 20px;
    }

    .menu-item {
        gap:10px;
    }

    .price-row {
        padding-left: 15px;
    }

    .site-footer {
        padding: 35px 22px 20px;
    }

    .footer-content {
        grid-template-columns:1fr;
        gap:30px;
    }

    .hours-row {
        max-width:320px;
    }

    .footer-bottom {
        margin-top:30px;
    }

    .footer-map {
        height:250px;
    }
}


