html {
    font-size: 16px;
}
@font-face {
    font-family: 'Fz The Moritza';
    src: url('../fonts/FzTheMoritza.woff2');
}

@font-face {
    font-family: 'Fz Madinah Authentic';
    src: url('../fonts/FzMadinahAuthentic.woff2');
}

@font-face {
    font-family: 'Fz The Handwritten Watermark';
    src: url('../fonts/FzTheHandwrittenWatermark.woff2');
}

:root {

    --font-philosopher: "Philosopher", sans-serif;
    --font-moritza: "Fz The Moritza";
    --font-madinah: "Fz Madinah Authentic";
    --font-handwritten: "Fz The Handwritten Watermark";
    --Primary-Vivid: #335806;
    --Primary-Light: #CED7C7;
    --Secondary-Light: #BAC2B3;
    --Secondary-Neutral: #97A291;
    --Secondary-Vidid: #4B5846;
    --Primary-Neutral: #697664;
    --Gray-Asparagus: #4B5846;
    --Accent-Light: #F8EAC4;
    --Dolphin-Gray: #838F77;
    --Accent-Neutral: #BB9837;
    --System-Light: #F6F6F4;
    --System-Yellow: #EBF1E7;
    --System-Alert: #B50000;
    --System-Disabled: #EDEDED;
    --Dark-Silver: #70766B;
    --Backgrounds-Primary: #FFF;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
body {
    color: var(--Primary-Vivid);
    font-size: 1rem;
    font-weight: 400;
    line-height: 128%;
    font-family: var(--font-philosopher);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    line-height: 128%;
}

h3 {
    color: var(--Primary-Vivid);
    font-size: 3.75rem !important;
    font-family: var(--font-moritza);
    line-height: 120%;
    min-width: max-content;
}

.text-large {
    color: var(--Primary-Vivid);
    font-size: 4.5rem !important;
    font-family: var(--font-moritza);
    line-height: 120%;
}
.text-semilarge {
    color: var(--Primary-Vivid);
    font-size: 4rem !important;
    font-family: var(--font-moritza);
    line-height: 120%;
}

.text-medium {
    color: var(--Primary-Vivid);
    font-size: 3.75rem !important;
    font-family: var(--font-moritza);
    line-height: 120%;
    min-width: max-content;
}

.text-small {
    color: var(--Primary-Vivid);
    font-size: 3.25rem !important;
    font-family: var(--font-moritza);
    line-height: 120%;
    letter-spacing: -0.13rem;
}

.font-madinah {
    font-family: var(--font-madinah);
}

.layout-image {
    background-image: url("../images/layout.webp");
    background-size: contain;
    background-repeat: repeat;
}

.text-stroke {
    color: var(--Accent-Light);
    text-align: center;
    -webkit-text-stroke-width: 0.10000000149011612;
    -webkit-text-stroke-color: var(--Accent-Light);
    font-family: var(--font-moritza);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.04rem;
}

.section-story .swiper-pagination-bullets {
    bottom: 0 !important;
}

.section-story .swiper-pagination-bullet {
    width: 4.9375rem;
    height: 0.09375rem;
    opacity: 1;
    border-radius: 0;
    margin: 0 !important;
    background-color: var(--Primary-Neutral);
}

.section-story .swiper-pagination-bullet-active {
    background-color: var(--Primary-Light);
}

.section-respon .respon-none-active {
    border-color: var(--Primary-Neutral);
}

.section-respon .respon-none-active img {
    display: none;
}

.section-respon .respon-none-active p {
    color: var(--Primary-Neutral);
}

.section-respon .respon-active {
    border-color: var(--Accent-Neutral);
}

.section-respon .respon-active p {
    color: var(--Accent-Neutral);
}

.section-respon .respon-active img {
    display: block;
}

::-webkit-scrollbar {
    display:none;
}


.popup-bottom {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 0;
}
  
.popup-bottom.open {
    max-height: 100dvh;
    transition: max-height 0.5s ease-in;
}

.text-stroke-handwritten {
    color: var(--Accent-Light);
    -webkit-text-stroke-width: 0.25px;
    -webkit-text-stroke-color: var(--Accent-Light);
    font-family: var(--font-handwritten);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

input::placeholder, textarea::placeholder {
    color: var(--Primary-Light) !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 1.2rem */
    text-transform: uppercase;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

select:required:invalid {
    color: var(--Primary-Light, #CED7C7);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}
option[value=""][disabled] {
    display: none;
}
option {
    color: var(--Accent-Neutral, #BB9837);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

input:disabled {
    background: var(--System-Disabled) !important;
}
