/*
Theme Name: OLILO
Theme URI:
Author: Fivement
Author URI:
Description: The sweetness worth sharing!
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: olilo
*/

/* Fonts */
@font-face {
    font-family: 'TAY Barro';
    src: url('fonts/TAYBarro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TAY Bread Pan';
    src: url('fonts/TAYBreadPan.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #FFF;
    --off-white: #F7F3E3;
    --orange: #FB4408;
    --light-orange: #FFBDA5;
    --sky-blue: #A0DBF2;
    --blue: #5FBBDB;
    --black: #331807;

    --announcement-height: 40px;
    --header-height: 200px;
    --bottle-base-height: 90vh;
}

@media (max-width: 768px) {
    :root {
        --announcement-height: 34px;
        --header-height: 120px;
        --bottle-base-height: 60vh;
    }
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 28px;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        font-size: 22px;
    }
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3 {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    overflow-wrap: break-word;
}
h4 {
    font-family: 'TAY Bread Pan', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    overflow-wrap: break-word;
    letter-spacing: -8px;
}

h1 {
    font-size: 100px;
    line-height: 1;
    letter-spacing: -2px;
}

h2 {
    font-size: 70px;
    line-height: 1;
}

h3 {
    font-size: 48px;
    line-height: 1.1;
}

h4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 12px;
    font-size: 40px;
    line-height: 1.1;
    margin-top: 20px;
}

h5 {
    font-family: 'TAY Barro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 28px;
        gap: 0 10px;
    }
    h5 {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* Base */

body {
    background-color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
}

.for-mobile {
    display: none;
}

@media (max-width: 768px) {
    .for-mobile {
        display: block;
    }
    .for-desktop {
        display: none;
    }
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.button {
    background-color: var(--off-white);
    color: var(--orange);
    border: 2px solid var(--orange);
    cursor: pointer;
    font-family: 'Overpass Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
    position: relative;
    top: -2px;
    left: 2px;
    z-index: 2;
    box-shadow: -3px 3px 0 var(--orange);
}
.button:hover {
    transform: translate(-3px, 3px);
    box-shadow: none;
}

.hidden {
    display: none;
}

/* Site Header */

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9;
    padding-top: var(--announcement-height);
}

.site-header .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-header .site-logo img {
    width: 300px;
}

.header-logo {
    transform-origin: center center;
    transition: transform 0.2s ease-out;
}

@media (min-width: 769px) {
    .header-logo-hidden {
        transform: scale(0.6) translateY(-50%);
    }
}

.hamburger-btn {
    position: absolute;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--orange);
    color: var(--off-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;

    display: none;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 12px;
    height: 12px;
}

.hamburger-line {
    display: block;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Full-screen nav overlay */
.site-nav {
    position: fixed;
    inset: 0;
    z-index: 8;
    background-color: var(--orange);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--header-height) 40px 40px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.site-nav[hidden] {
    display: flex;
}

.site-nav.is-open {
    visibility: visible;
    opacity: 1;
}

.site-nav.is-open[hidden] {
    display: flex;
}

.site-nav-inner {
    width: 100%;
    max-width: 800px;
}

.site-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-menu .menu-item {
    margin: 0;
}

.site-menu a {
    display: block;
    color: var(--off-white);
    font-family: 'TAY Barro', sans-serif;
    font-size: 60px;
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0;
    transform: translateY(16px);
}

.site-nav.is-open .site-menu a {
    animation: nav-fade-up 0.4s ease forwards;
}

.site-nav.is-open .site-menu li:first-child a {
    animation-delay: 0s;
}

.site-nav.is-open .site-menu li:nth-child(2) a {
    animation-delay: 0.05s;
}

.site-nav.is-open .site-menu li:nth-child(3) a {
    animation-delay: 0.1s;
}

.site-nav.is-open .site-menu li:nth-child(4) a {
    animation-delay: 0.15s;
}

.site-nav.is-open .site-menu li:nth-child(5) a {
    animation-delay: 0.2s;
}

.site-nav.is-open .site-menu li:nth-child(6) a {
    animation-delay: 0.25s;
}

@keyframes nav-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .site-header .site-logo img {
        width: 140px;
    }

    .hamburger-btn {
        right: 20px;
    }

    .site-nav {
        padding: var(--header-height) 20px 20px;
    }

    .site-nav-menu a {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-menu a {
        font-size: 40px;
    }
}

.announcement-bar {
    background-color: var(--sky-blue);
    color: var(--orange);
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--announcement-height);
    z-index: 9;
}

.announcement-track {
    display: inline-flex;
    animation: scroll-announcement 30s linear infinite;
    align-items: center;
    height: var(--announcement-height)
}

.announcement-text {
    padding: 0 12px;
    font-family: 'Overpass Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.5px;
}

@keyframes scroll-announcement {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .announcement-text {
        font-size: 12px;
    }
}

/* Section */

section {
    background-image: url('images/speckles-white.png');
    background-position: top center;
}

.outer-margin {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.inner-margin {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .outer-margin {
        padding: 0 30px;
    }
    .inner-margin {
        padding: 40px 0 !important;
    }
}

.section-title {
    text-align: center;
}

.tick-tock {
    animation: tick-tock 1s steps(1) infinite;
}

/* Home */
/* Hero */

.home .hero {
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--off-white);
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .hero-content {
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    width: 100%;
}

.home .hero-title {
    text-align: center;
}
.home .hero-title h2 {
    color: var(--orange);
    margin-bottom: 40px;
}
.home .hero-title p {
    color: var(--black);
    font-size: 28px;
}
.home .hero-bottle {
    display: flex;
    position: relative;
}
.home .hero-bottle .atropos-inner {
    display: flex;
    overflow: visible;
}
.home .hero-bottle img {
    width: auto;
    height: calc(var(--bottle-base-height) - var(--header-height));
    transform: translateY(-8%);
}
.home .hero-bottle .usage {
    padding-top: calc((var(--bottle-base-height) - var(--header-height)) / 9);
    padding-left: 40px;
}
.home .hero-bottle .usage-text {
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    height: calc((var(--bottle-base-height) - var(--header-height)) / 9);
    width: calc((var(--bottle-base-height) - var(--header-height)) / 9 * 3.75);
    opacity: 0;
}
.home .hero-bottle .usage-text.stir-it {
    background-image: url('images/usage-stir-it.png');
}
.home .hero-bottle .usage-text.mix-it {
    background-image: url('images/usage-mix-it.png');
}
.home .hero-bottle .usage-text.bake-it {
    background-image: url('images/usage-bake-it.png');
}
.home .hero-bottle .usage-text.top-it {
    background-image: url('images/usage-top-it.png');
}
.home .hero-bottle .usage-text.sauce-it {
    background-image: url('images/usage-sauce-it.png');
}
.home .hero-bottle .usage-text.cook-it {
    background-image: url('images/usage-cook-it.png');
}
.home .hero-bottle .flow-text {
    position: absolute;
    bottom: 20px;
    left: 0;
}
.home .hero-bottle .flow-text img {
    height: calc((var(--bottle-base-height) - var(--header-height)) / 8);
    width: auto;
    transform: translateX(-30%);
}
.home .hero-bottle .kitchen {
    position: absolute;
    right: 10%;
    top: 0;
    height: 100%;
}
.home .hero-bottle .kitchen-object {
    display: block;
    position: absolute;
    width: 22vh;
    height: 22vh;
    background-size: contain;
}
.home .hero-bottle .kitchen-object.spoon {
    background-image: url('images/kitchen-spoon.png');
    top: -10%;
    left: 2vw;
}
.home .hero-bottle .kitchen-object.raspberry {
    background-image: url('images/kitchen-raspberry.png');
    top: 0;
}
.home .hero-bottle .kitchen-object.lime {
    background-image: url('images/kitchen-lime.png');
    top: 0;
    left: 5vw;
}
.home .hero-bottle .kitchen-object.blueberry {
    background-image: url('images/kitchen-blueberry.png');
    top: 15%;
    left: -7vw;
}
.home .hero-bottle .kitchen-object.seeds {
    background-image: url('images/kitchen-seeds.png');
    top: 20%;
}
.home .hero-bottle .kitchen-object.strawberry {
    background-image: url('images/kitchen-strawberry.png');
    top: 30%;
    left: 5vw;
}
.home .hero-bottle .kitchen-object.egg {
    background-image: url('images/kitchen-egg.png');
    top: 40%;
    left: 8vw;
}
.home .hero-bottle .kitchen-object.noodle {
    background-image: url('images/kitchen-noodle.png');
    top: 50%;
    left: 0;
}
.home .hero-bottle .kitchen-object.steak {
    background-image: url('images/kitchen-steak.png');
    top: 60%;
    left: 2vw;
}
.home .hero-bottle .kitchen-object.eggplant {
    background-image: url('images/kitchen-eggplant.png');
    top: 80%;
    left: 4vw;
}
.home .hero-bottle .kitchen-object.sardines {
    background-image: url('images/kitchen-sardines.png');
    top: 80%;
    left: -5vw;
}

.home .hero-subtitle {
    display: none;
}
.home .hero-subtitle p {
    color: var(--black);
    text-align: center;
}

@media (min-width: 769px) {
    .home .hero-title {
        flex-basis: calc(50% - ((var(--bottle-base-height) - var(--header-height)) * 0.2));
    }
    .home .hero-bottle {
        flex-basis: 50%;
    }
}

@media (max-width: 768px) {
    .home .hero-content {
        flex-direction: column;
    }
    .home .hero-title p,
    .home .hero-title .button-wrapper {
        display: none;
    }
    .home .hero-bottle {
        transform: translateX(10%);
    }
    .home .hero-bottle .usage {
        padding-left: 0;
    }
    .home .hero-bottle .kitchen {
        right: 10vw;
        top: -15vh;
        height: 130%;
    }
    .home .hero-subtitle {
        display: block;
    }
}

.home .features-bar {
    background-color: var(--light-orange);
    background-image: none;
    color: var(--orange);
    overflow: hidden;
    white-space: nowrap;
}
.home .features-bar .features-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-announcement 30s linear infinite;
    gap: 20px;
}
.home .features-bar .feature-text {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-family: 'TAY Barro', sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.home .features-bar .feature-text img {
    width: 34px;
    height: 34px;
    margin-right: 8px;
}

/* Bridge */

.home .bridge .outer-margin {
    position: relative;
}
.home .bridge .inner-margin {
    z-index: 1;
}
.home .bridge img {
    position: absolute;
    left: 50%;
    z-index: 2;
}

.home .bridge-image {
    opacity: 0;
}
.home .bridge-image.animate__animated {
    opacity: 1;
}

.home .bridge .copy {
    text-align: center;
    color: var(--orange);
}
.home .bridge .description {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .home .bridge .description {
        margin-top: 20px;
    }
}

.home .choosing-better {
    background-color: var(--sky-blue);
}
.home .choosing-better .outer-margin {
    height: 150vh;
}
.home .choosing-better .is-it-sugar {
    width: 640px;
    margin-left: calc(-320px - 15vw);
    top: 70vh;
}
.home .choosing-better .is-it-fiber {
    width: 560px;
    margin-left: calc(-280px + 20vw);
    top: 100vh;
}
.home .choosing-better .inner-margin {
    position: sticky;
    top: var(--header-height);
}
.home .kitchen-upgrade {
    background-image: url('images/speckles-orange.png');
    padding-top: 20vh;
}
.home .kitchen-upgrade .its-both {
    width: 560px;
    margin-left: calc(-280px - 5vw);
    top: -25vh;
}

@media (max-width: 768px) {
    .home .choosing-better .is-it-sugar {
        width: 380px;
        margin-left: calc(-190px - 15vw);
    }
    .home .choosing-better .is-it-fiber {
        width: 340px;
        top: 90vh;
        margin-left: calc(-170px + 20vw);
    }
    .home .kitchen-upgrade .its-both {
        width: 340px;
        top: -25vh;
        margin-left: calc(-170px - 5vw);
    }
}

@keyframes tick-tock {
    0%, 50% {
        transform: rotate(1deg);
    }
    50.01%, 100% {
        transform: rotate(-1deg);
    }
}

.home .bridge + .features-bar {
    background-color: var(--sky-blue);
}
.home .bridge + .features-bar .features-track {
    gap: 0;
}
.home .bridge + .features-bar .feature-text {
    padding: 16px;
}

/* Solution */

.home .solution {
    background-color: var(--light-orange);
    color: var(--off-white);
    height: 400vh;
    position: relative;
}
.home .solution .headline-track h1 {
    color: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    position: sticky;
    top: 0;
}

.home .solution .headline-track {
    height: 200vh;
    position: relative;
    margin-bottom: 100vh;
}
.home .solution .olilo-bottle {
    width: calc(70vh * 0.41);
    height: 70vh;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 10%;
    z-index: 5;
    transform: translate3d(-50%, -50%, 0) rotate(-20deg);
}
.home .solution .olilo-bottle img {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home .solution .syrup-line {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    background: #fff4e5;
    border-radius: 4px;
    z-index: 1;
    visibility: hidden;
    margin-top: 10px;
    margin-left: 10%;
}

.home .solution .features {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    height: 100vh;
    position: relative;
    padding-bottom: 50vh;
}
.home .solution .features .feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: right;
    width: 50%;
}
.home .solution .features .feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.home .solution .features .feature-item h4 {
    color: var(--orange);
    justify-content: flex-end;
}
.home .solution .features .feature-item p {
    color: var(--black);
    font-size: 18px;
}

.home .solution .squeeze {
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin-left: 10%;
    transform: translate3d(-50%,0,0);
    width: 50vw;
    z-index: 6;
}

.home .solution .squeeze img.bounce {
    animation: bounce 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(0.95);
    }
    30% {
        transform: scale(1.05);
    }
    45% {
        transform: scale(0.98);
    }
    60% {
        transform: scale(1.02);
    }
    75% {
        transform: scale(0.99);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .home .solution .syrup-line {
        width: 4px;
    }
    .home .solution .squeeze {
        width: 100%;
        bottom: 40px;
    }
}

/* Logic */

.home .logic {
    background-color: var(--blue);
}

.home .logic .section-title {
    color: var(--off-white);
    margin-bottom: 40px;
}
.home .logic .compare-chart {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.home .logic .compare-chart img {
    width: 100%;
    height: auto;
    opacity: 0;
}
.home .logic .compare-chart img.animate__animated {
    opacity: 1;
}

@media (min-width: 769px) {
    .home .logic .outer-margin {
        display: flex;
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
    .home .logic .section-title h2 {
        transform: translate3d(0, 100%, 0);
        position: sticky;
        top: var(--header-height);
        margin-bottom: var(--header-height);
    }
    .home .logic .inner-margin {
        display: flex;
        flex-direction: row-reverse;
        gap: 10%;
    }
}

@media (max-width: 768px) {
    .home .logic .outer-margin {
        padding: 0 12px;
    }
}

/* Origin */

.home .origin {
    background-color: var(--off-white);
}

.home .origin .section-title {
    color: var(--orange);
}
.home .origin .section-title h2 {
    margin: 8px 0 4px;
}
.home .origin .origin-content {
    display: flex;
    margin-top: 80px;
    gap: 5vw;
    align-items: center;
}
.home .origin .origin-content .image,
.home .origin .origin-content .description {
    flex-basis: 50%;
}
.home .origin .origin-content .image {
    position: relative;
}
.home .origin .origin-content .image img {
    position: relative;
    z-index: 2;
}
.home .origin .origin-content .image::before {
    background-image: url('images/kitchen-spots.png');
    background-position: top center;
    background-size: contain;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1.25);
    top: 0;
    left: 0;
    position: absolute;
}
.home .origin .origin-content p + p {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .home .origin .origin-content {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
}

/* FAQ */

.home .divider {
    height: 70px;
    background-color: #fff;
    background-image: url('images/checker-divide.png');
    background-size: contain;
}

.home .faq {
    background-color: #fff;
    background-image: url('images/speckles-orange.png');
}
.home .faq .inner-margin {
    padding: 60px 0;
}

.home .faq .section-title {
    color: var(--orange);
}

.home .faq .faq-list {
    max-width: 720px;
    margin: 40px auto 0;
}

.home .faq .faq-accordion-item {
    border-bottom: 1px dashed var(--black);
}

.home .faq .faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--black);
    transition: color 0.2s ease;
}

.home .faq .faq-accordion-trigger[aria-expanded="true"] {
    color: var(--orange);
}

.home .faq .faq-accordion-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
}
.home .faq .faq-accordion-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1rem;
    color: var(--black);
    transition: color 0.2s ease, transform 0.25s ease;
}

.home .faq .faq-accordion-icon svg {
    display: block;
}

.home .faq .faq-accordion-trigger[aria-expanded="true"] .faq-accordion-icon {
    color: var(--orange);
    transform: scaleY(-1);
}

.home .faq .faq-accordion-content {
    overflow: hidden;
}

.home .faq .faq-accordion-content[hidden] {
    display: none;
}

.home .faq .faq-accordion-inner {
    font-size: 22px;
    line-height: 1.3;
    color: var(--black);
    padding-bottom: 40px;
}

.home .faq .faq-accordion-inner p:first-child {
    margin-top: 0;
}

.home .faq .faq-accordion-inner p:last-child {
    margin-bottom: 0;
}

/* OLILOG */

.home .olilog {
    background-color: var(--sky-blue);
}
.home .olilog .outer-margin {
    max-width: 100%;
}
.home .olilog .inner-margin {
    padding: 60px 0;
}
.home .olilog .section-title {
    color: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home .olilog .section-title img {
    width: 300px;
    margin-top: 40px;
}

.home .olilog .olilog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
}
.home .olilog .olilog-list .olilog-item {
    flex-basis: 33.333%;
    text-align: center;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb {
    border: 10px solid var(--white);
    width: 100%;
    height: 0;
    padding-top: 74%;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb:hover img {
    transform: scale(1.03);
}
.home .olilog .olilog-list .olilog-item .olilog-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .home .olilog .section-title img {
        width: 240px;
        margin-top: 20px;
    }
    .home .olilog .olilog-list {
        margin-top: 40px;
    }
    .home .olilog .olilog-list .olilog-item {
        flex-basis: 100%;
    }
}

/* Site Footer */

.site-footer {
    background-color: var(--sky-blue);
    background-image: url('images/speckles-white.png');
    background-position: top center;
    padding-top: 40px;
    border-top: 2px dashed #fff;
}

.site-footer .footer-navigation {
    display: flex;
    padding: 0 30px;
}
.site-footer .footer-menu {
    display: none;
    flex-basis: 50%;
}
.site-footer .footer-menu .menu {
    display: flex;
    gap: 24px;
    color: var(--orange);
    font-family: 'TAY Barro', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.site-footer .footer-logo img {
    width: 200px;
    height: auto;
}

.site-footer .footer-sharing {
    flex-basis: 50%;
    position: relative;
}
.site-footer .footer-sharing h5 {
    color: var(--orange);
    margin-bottom: 20px;
}

.site-footer .footer-sharing .social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.site-footer .footer-sharing .social-link {
    background-size: contain;
    width: 34px;
    height: 34px;
}
.site-footer .footer-sharing .social-link.instagram {
    background-image: url('images/icon-instagram.svg');
}
.site-footer .footer-sharing .social-link.tiktok {
    background-image: url('images/icon-tiktok.svg');
}
.site-footer .footer-sharing .mail-signup {
    width: 100%;
    position: relative;
    margin-top: 20px;
    z-index: 2;
}
.site-footer .footer-sharing .mail-signup input {
    background-color: var(--white);
    width: 100%;
    padding: 14px 24px;
    border: 2px solid var(--orange);
    border-radius: 40px;
    font-family: 'Overpass Mono', monospace;
    font-size: 16px;
    outline: none;
}
.site-footer .footer-sharing .mail-signup button {
    background-color: transparent;
    border: none;
    color: var(--orange);
    cursor: pointer;
    font-family: 'Overpass Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.site-footer .footer-logo img {
    width: 300px;
    margin-left: 24px;
    transform: translateY(40px);
}

.site-footer .legal-menu {
    background-color: var(--white);
    background-image: url('images/speckles-orange.png');
    background-position: top center;
    padding: 60px 30px 30px;
}
.site-footer .legal-menu .menu {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    gap: 4px 12px;
}

@media (max-width: 768px) {
    .site-footer .footer-sharing {
        flex-basis: 100%;
    }
    .site-footer .footer-logo img {
        width: 100%;
        margin-left: 0;
    }
    .site-footer .legal-menu .menu {
        font-size: 12px;
    }
}