* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


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


body {

    font-family: 'Inter', sans-serif;

    background-color: #E6E1D8;

    color: #1a1a1a;

    display: flex;

    flex-direction: column;

    height: 100vh;

    overflow-x: hidden;

}


header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 56px;

    background-color: #D9A672;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 16px;

    z-index: 50;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}


.header-icon-btn {

    background: none;

    border: none;

    cursor: pointer;

    padding: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.search-container {

    flex: 1;

    margin: 0 16px;

    position: relative;

    max-width: 320px;

}


.search-input {

    width: 100%;

    border: 1px solid #999;

    border-radius: 4px;

    padding: 4px 8px 4px 8px;

    font-size: 14px;

    background: white;

    padding-right: 30px;

}


.search-icon-inside {

    position: absolute;

    right: 8px;

    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;

}


main {

    flex: 1;

    margin-top: 56px;

    margin-bottom: 64px;

    overflow-y: auto;

    width: 100%;

    scrollbar-width: none;

}

main::-webkit-scrollbar {

    display: none;

}


.container {

    padding: 16px;

    width: 100%;

    margin: 0 auto;

}


@media (min-width: 1024px) {

    .container {

        padding: 48px;

        max-width: 1280px;

    }

}


.grid-layout {

    display: flex;

    flex-direction: column;

    gap: 32px;

}


@media (min-width: 1024px) {

    .grid-layout {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 64px;

        align-items: start;

    }

    .order-pc-1 { order: 1; }

    .order-pc-2 { order: 2; }

    .order-pc-3 { order: 3; }

}


h1 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 12px;

    text-align: center;

}


@media (min-width: 1024px) {

    h1 {

        font-size: 2.25rem;

        text-align: left;

    }

    .text-center-pc { text-align: center; }

}


.text-content {

    font-size: 0.875rem;

    line-height: 1.6;

    color: #1f2937;

}


@media (min-width: 1024px) {

    .text-content {

        font-size: 1rem;

    }

}


.buttons-container {

    display: flex;

    justify-content: center;

    gap: 16px;

    margin-bottom: 32px;

}


@media (min-width: 1024px) {

    .buttons-container {

        justify-content: flex-start;

        margin-bottom: 48px;

        gap: 32px;

    }

}


.btn {

    padding: 12px 32px;

    font-weight: 600;

    text-transform: uppercase;

    text-decoration: none;

    border-radius: 4px;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    transition: opacity 0.2s;

    display: inline-block;

    text-align: center;

    border: none;

    cursor: pointer;

}


.btn:hover {

    opacity: 0.9;

}


.btn-blue {

    background-color: #2F80ED;

    color: white;

}


.btn-brown {

    background-color: #D9A672;

    color: black;

    border: 1px solid rgba(0,0,0,0.05);

}


.section-title {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 16px;

}


.about-content {

    margin-bottom: 24px;

}


.img-responsive {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 4px;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

}


.main-image-container {

    width: 100%;

    height: 224px;

}


@media (min-width: 1024px) {

    .main-image-container {

        height: 500px;

    }

}


.info-section {

    margin-top: 32px;

    font-size: 0.875rem;

}


@media (min-width: 1024px) {

    .info-section {

        margin-top: 64px;

    }

}


.info-item {

    margin-bottom: 24px;

}


.info-header {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 8px;

}


.dot {

    width: 16px;

    height: 16px;

    background-color: #8B5E3C;

    border-radius: 50%;

    display: inline-block;

}


nav {

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 56px;

    background-color: #E6E1D8;

    border-top: 1px solid rgba(0, 0, 0, 0.1);

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 24px;

    z-index: 50;

}


@media (min-width: 1024px) {

    nav {

        padding: 0 48px;

    }

}


.nav-link {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #6b7280;

    transition: color 0.2s;

    width: 40px;

}


.nav-link:hover {

    color: black;

}


.nav-active {

    color: black;

}


.icon-bg {

    padding: 6px;

    border-radius: 50%;

    margin-bottom: -4px;

    display: flex;

}


.nav-active .icon-bg {

    background-color: rgba(0, 0, 0, 0.1);

}



.menu-container {

    max-width: 95%;

    margin: 0 auto;

    padding: 16px;

}

@media (min-width: 1024px) { .menu-container { padding: 48px; } }


.menu-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;

}


@media (min-width: 1024px) {

    .menu-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 64px;

    }

}


.menu-card {

    background-color: #EAE0D5;

    border-radius: 12px;

    padding: 32px;

    display: flex;

    flex-direction: column;

    height: 100%;

}


.menu-list {

    list-style: none;

    flex-grow: 1;

}


.menu-item {

    margin-bottom: 24px;

}


.menu-item-header {

    display: flex;

    justify-content: space-between;

    font-weight: 700;

    font-size: 1.125rem;

}


.menu-item-desc {

    font-size: 0.875rem;

    color: #4b5563;

}



.reservation-main {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100%;

}


.reservation-container {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

}


@media (max-width: 1024px){

    .reservation-container {

        margin-top: 400px;

}

}


.reservation-grid {

    display: flex;

    flex-direction: column;

    gap: 32px;

    width: 100%;

    align-items: center;

}


@media (min-width: 1024px) {

    .reservation-grid {

        display: grid;

        grid-template-columns: 1fr 1fr 1fr;

        gap: 64px;

    }

    .reservation-grid > .order-pc-1 { order: 1; }

    .reservation-grid > .order-pc-2 { order: 2; }

    .reservation-grid > .order-pc-3 { order: 3; }

}


.form-group {

    margin-bottom: 24px;

}


.form-label {

    display: block;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 600;

    margin-bottom: 6px;

    color: #1a1a1a;

}


.form-input {

    width: 100%;

    border: 1px solid #9ca3af;

    padding: 12px;

    background: white;

    font-size: 14px;

    border-radius: 0;

    outline: none;

}


.form-input:focus {

    border-color: #1a1a1a;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

}


@media (min-width: 768px) {

    .gallery-grid {

        grid-template-columns: 1fr 1fr;

    }

}


.aspect-4-3 {

    aspect-ratio: 4 / 3;

    width: 100%;

}


.map-iframe {

    width: 100%;

    height: 100%;

    border: 1px solid #d1d5db;

}


.map-container-pc {

    display: none;

    width: 100%;

    height: 600px;

    border: 1px solid #9ca3af;

    padding: 4px;

    background: white;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

}


@media (min-width: 1024px) {

    .map-container-pc {

        display: block;

    }

    .map-container-mobile {

        display: none;

    }

}


.map-container-mobile {

    width: 100%;

    height: 256px;

    margin-bottom: 24px;

    border-radius: 8px;

    overflow: hidden;

    border: 1px solid #9ca3af;

}
