@charset "UTF-8";
@import '../stickyNavigation.css';
@import '../hero2.css';
@import '../footer.css';
@import '../carousel.css';
@import '../frontpage.css';
@import '../facilitiesStyle.css';

/* VARIABLES */
/* --------------------- */
/* --------------------- */
/* --------------------- */
:root {
    --desktop-title-size: clamp(22px, 2vw, 24px);
    --desktop-subtitle-size: clamp(20px, 1.3vw, 22px);
    --desktop-paragraph-size: clamp(16px, 1.2vw, 20px);

    --tablet-title-size: clamp(0.9rem, 2.3vw, 2rem);
    --tablet-subtitle-size: clamp(0.9rem, 2vw, 2rem);
    --tablet-font-size: clamp(0.9rem, 1.2vw, 1.5rem);

    --mobile-title-size: 18px;
    --mobile-subtitle-size: 14px;
    --mobile-font-size: 12px;

    --color-primary: #000000;
    --color-secondary: #000000;
    --color-secondary-light: #709B84;
    --color-secondary-dark: #000000;
    --color-background: transparent;
}

/* removes all default padding and margins */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

.kanji-font {
    font-family: 'Zen Old Mincho';
}

p {
    font-size: var(--desktop-paragraph-size);
    color: #333333;
    display: block;
    font-family: 'Zen Old Mincho';
    font-weight: 100;
}

h3 {
    font-size: var(--desktop-subtitle-size) !important;
    color: rgb(117, 64, 67);
    display: block;
    font-family: 'Zen Old Mincho';
    font-weight: 300;
}

h2 {
    font-weight: 400;
    font-size: var(--desktop-title-size);
    letter-spacing: 0.3em;
    color: rgb(117, 64, 67);
    font-family: 'Federo';
}

.cuisine-vertical-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: min(calc(1.2 * 1440px / 100), 1vw);
    max-width: 1000px;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.grid-display {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px 24px;
    /* row gap, column gap */
    text-align: left;
}

.opening-hours-wrapper h2 {
    color: rgb(117, 64, 67);
    padding-bottom: 10px;
    font-size: var(--desktop-title-size);
    letter-spacing: 0.3em;
}

.opening-hours-wrapper p {
    font-size: var(--desktop-paragraph-size);
    padding-bottom: 20px;
    color: #333333;
    display: block;
    font-family: 'Zen Old Mincho';
    font-weight: 100;
}

.opening-hours-wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: min(90vw, 1000px);
    margin: auto;
    padding: 100px 40px;
}

/* make a dark overlay for images used for text underlay */

.gradient-overlay-bottom-half::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background:
        radial-gradient(ellipse at center bottom,
            rgba(0, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0.3) 50%,
            transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.dual-image {
    display: flex;
    width: 100vw;
    aspect-ratio: 5 / 1;
    /* Ensures consistent aspect ratio (e.g., 2:1 wide) */
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 30vh;
}

.dual-item {
    flex: 1;
}

.dual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop images while keeping consistent height */
    display: block;
}

/* CHEF */
/* --------------------- */
/* --------------------- */
/* --------------------- */
.chef-container {
    margin: auto;
    display: grid;
    grid-template-columns: 30% 67%;
    gap: 3%;
    max-width: 1200px;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
    justify-self: center;
    justify-content: space-between
}

.chef-container h2 {
    color: rgb(117, 64, 67);
    justify-self: left;
    font-family: 'Federo';
    font-weight: 400;
    text-align: center;
    font-size: var(--desktop-title-size);
    letter-spacing: 0.2em;
}

.chef-container h3 {
    color: rgb(117, 64, 67);
    justify-self: left;
    font-size: var(--desktop-subtitle-size);
    font-family: 'Zen Old Mincho';
    font-weight: 400;
    letter-spacing: min(calc(0.2 * 1440px / 100), 0.2vw);
}

.chef-image-container {
    text-align: center;
}

.chef-image {
    display: block;
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.chef-content {
    align-self: center;
    display: grid;
    gap: min(calc(1.2 * 1440px / 100), 1vw);
    color: #333333;
}

.chef-text {
    color: #333333;
    font-family: 'Zen Old Mincho','Courier New', Courier, monospace;
    font-size: var(--desktop-paragraph-size);
    line-height: 160%;
    letter-spacing: 0.2em;
}

.left-align {
    text-align: left;
}

@media (max-width: 1024px) and (min-width: 769px) {
    h3 {
        font-size: var(--tablet-subtitle-size) !important;
        letter-spacing: 0.2em;
        line-height: 160%;
    }

    p {
        font-size: var(--tablet-font-size) !important;
        letter-spacing: 0.2em;
        line-height: 160%;
    }
}

@media (max-width: 1023px) {
    .opening-hours-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}


@media (max-width: 768px) {
    h3 {
        font-size: var(--mobile-subtitle-size) !important;
    }

    p {
        font-size: var(--mobile-font-size) !important;
    }

    h2 {
        font-size: var(--mobile-title-size) !important;
    }

    .opening-hours-wrapper h2 {
        text-align: center;
    }

    .cuisine-vertical-container {
        padding: 10vw 4vw;
    }

    .dual-image {
        display: flex;
        width: 100vw;
        aspect-ratio: 5 / 2;
        /* Ensures consistent aspect ratio (e.g., 2:1 wide) */
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .chef-container {
        display: flex;
        flex-direction: column;
    }

    .chef-image-container {
        max-width: 175px;
        align-self: center;
        display: flex;
        flex-direction: column-reverse;
    }

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

@media (max-width: 480px) {
    .opening-hours-wrapper {
        width: 90vw;
    }
}