@charset "UTF-8";
@import '../stickyNavigation.css';
@import '../hero2.css';
@import '../footer.css';
@import '../carousel.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;
  display: block;
  overflow-x: hidden;
}

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

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

/* onsen */
.onsen-carousel {
    display: none;
}

.onsen-background-container {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url(../../images/washi.webp);
    background-size: cover;
    background-position: center;
}

.onsen-section-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* container for three image section */
.triple-image-container {
    width: 100%;
    display: flex;
    align-content: center;
    justify-items: center;
    justify-self: center;
    gap: 0px;
    overflow: hidden;
}

.triple-item {
    flex: 1;
    aspect-ratio: 3 / 2;
    /* Adjust as needed */
    overflow: hidden;
    height: 30vh;
}

.triple-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* container for one image section */
.single-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(90vw, 1000px);
    max-height: 500px;
    margin: 0 auto !important;
    overflow: hidden;
}

.single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center !important;
    transform: translateY(10%);
}


/* CONTAINER */
.onsen-new-container {
    display: flex;
    width: min(90vw, 1200px);
    flex-direction: column;
    gap: 2vw;
    letter-spacing: 0.2em;
    margin: 100px 40px;
}

.onsen-new-container.opening-hours {
    font-family: "Zen Old Mincho", serif, "Federo";
    display: flex;
    width: min(90vw, 1000px);
    flex-direction: column;
    gap: 2vw;
    letter-spacing: 0.2em;
    margin: 5px 100px 80px 100px;
}

/* CONTAINER TITLE */
.onsen-new-container h2 {
    font-family: "Zen Old Mincho", serif, "Federo";
    font-weight: 400;
    font-size: var(--desktop-title-size);
    color: #144738;
    opacity: 0.8;
    letter-spacing: 0.3em;
    line-height: 160%;
    text-align: center;
    align-self: center;
}

.onsen-new-container h3 {
    font-size: var(--desktop-subtitle-size);
    text-align: left;
    font-weight: 100;
    margin: 0;
    font-family: 'Zen Old Mincho';
    color: #144738;
    opacity: 0.8;
    letter-spacing: 0.3em;
    line-height: 160%;
    padding-top: 25px;
}

.onsen-new-container h4 {
    font-size: calc(var(--desktop-subtitle-size)*0.85);
    font-weight: 100;
    margin: 0;
    font-family: 'Zen Old Mincho';
    color: #333333;
    letter-spacing: 0.3em;
    line-height: 160%;
}

.center {
    text-align: center;
}

.onsen-new-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    letter-spacing: 0.2em;
    line-height: 160%;
    justify-content: center;
    align-items: center;
}

p {
    letter-spacing: 0.2em;
    line-height: 160%;
    text-align: center;
}

/* single image container, with washi background */
.theater-column-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: min(90vw, 1000px);
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    margin: auto;
}

.theater-image-wrapper {
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.theater-image {
    width: 100%;
    aspect-ratio: 16 / 12;
    /* or 4 / 3, etc */
    object-fit: cover;
    object-position: center center;
    display: block;
}

.image-container {
    width: 100%;
}


.image-washi::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 65%);
    width: 100vw;
    height: 350px;
    background-image: url('../images/beige washi 3.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: -4;
}

.image-washi {
    position: relative;
    z-index: 0;
    height: 100%;
}

/* TABLET */
@media (max-width: 1024px) and (min-width: 769px) {

    .onsen-new-text {
        font-size: var(--tablet-font-size);
    }

    .onsen-new-container h3 {
        font-size: var(--tablet-subtitle-size);
    }

    .onsen-new-container h2 {
        font-size: var(--tablet-title-size);
    }

    .onsen-new-image {
        justify-content: flex-start;
    }

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

    h4 {
        font-size: var(--tablet-font-size) !important;
    }


    .top-element {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .onsen-carousel {
        display: block;
    }

    .triple-image-container {
        display: none;
    }

    .onsen-new-container.opening-hours {
        margin-left: 4vw;
        margin-right: 4vw;
    }

    .onsen-new-content p {
        font-size: var(--mobile-font-size) !important;
        text-align: center;
    }

    .onsen-new-text {
        font-size: var(--mobile-font-size) !important;
    }

    .onsen-new-container h3 {
        font-size: var(--mobile-subtitle-size) !important;
    }

    .onsen-new-container h2 {
        padding-bottom: 10px;
        font-size: var(--mobile-title-size) !important;
    }

    .onsen-new-image {
        justify-content: flex-start;
    }

    .dual-image-container {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        align-items: center;
        max-height: 700px;
    }

    .image-wrapper {
        align-self: center;
        width: 100vw;

    }

    .dual-item {
        width: 100%;
    }

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


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

    .onsen-new-container {
        width: 100%;
        padding: 10vw 4vw;
        margin: 0 auto;
    }

    .single-image-container {
        width: 100%;
    }

    .image-wrapper {
        padding: 0 4vw;
    }

    .triple-image-container {
        max-height: none;
        gap: 10px;
        width: 100svw;
    }

    .triple-item {
        width: 100%;
        padding: 0;
        height: auto;
    }

    .top-element {
        margin-top: 50px;
    }

    .image-container {
        width: 100%;
        padding: 0 4vw;
    }

    .theater-image-wrapper {
        width: 100%;
        padding: 0;
    }

    .theater-column-container {
        margin: 0;
        width: 100%;
    }
}