@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --base-yellow: #efc000;
    --base-yellow-hover: #f7d53d;
}

html,
body {
    font-size: 20px;
    font-family: "Spectral", serif;
    font-weight: 100;
}

.custom-other-links {
    text-decoration: none;
    color: inherit;
}

.custom-link {
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.custom-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* adjust underline distance */
    width: 0%;
    height: 2px;
    background-color: var(--base-yellow);
    transition: width 0.25s ease;
}

.custom-link:hover {
    color: var(--base-yellow);
    font-weight: bold;
}

.custom-link:hover::after {
    width: 100%;
    /* animate underline expansion */
}

.fixed-box-main {
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.fixed-box-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pattern-bg {
    width: 100%;
    background-image: url('../images/lemon-bg-1.png');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.pattern-bg-small-height {
    height: 250px;
}

.pattern-bg-fullscreen {
    height: 100vh;
}

.pattern-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: -1;
}

.btn-base-yellow {
    background-color: var(--base-yellow);
    border: none;
    border-radius: 5px;
    transition: background-color 0.25s ease-in-out,
        color 0.25s ease-in-out,
        box-shadow 0.25s ease-in-out;
}

.btn-base-yellow:hover {
    background-color: var(--base-yellow-hover);
    font-weight: bold;
}

.footer-text {
    font-size: 14px;
}

.string-obfuscate {
    unicode-bidi: bidi-override;
    direction: rtl;
}