@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'PPEiko-Regular';
    src: url('/assets/font/PPEiko-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
}

.bottle {
    position: relative;
    transform: translateX(100vw);
}

.cta {
    transform: translateX(100vw);
}

.footer-logo {
    transition: transform 0.3s ease;
    margin-bottom: -10px
}

@media only screen and (max-width: 1400px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-green .color-change-link {
    color: #344916;
    transition: color 0.5s ease;
}

.footer-logo.small {
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

@media only screen and (min-width: 1024px) {
    .footer-logo.small {
        transform: scale(0.7);
        transition: transform 0.3s ease;
        margin-bottom: -40px;
    }
}

.mt-negative-10px {
    margin-top: -10px;
}

.mt-negative-20px {
    margin-top: -20px;
}

.mt-negative-60px {
    margin-top: -60px;
}

@media only screen and (max-width: 1199px) {
    .mt-negative-60px {
        margin-top: -30px;
    }
}

.color-change-link {
    position: relative;
    display: inline-block;
    color: #F84F1E;
}

.color-change-link .color-change {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #344916;
    overflow: hidden;
    pointer-events: none;
}

.color-change-svg-container {
    position: relative;
    display: inline-block;
}

.color-change-svg-container .color-change {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    filter: invert(25%) sepia(83%) saturate(591%) hue-rotate(65deg) brightness(92%) contrast(104%);
    z-index: 1;
    transform: scale(0.7);
}