@font-face {
    font-family: "Sabon";
    src: url("../fonts/Sabon Bold.ttf");
}

@font-face {
    font-family: "Helv";
    src: url("'../fonts/HelveticaNeue Light.ttf'");
}

.sabonfont {
    font-family: "Sabon" !important
}

.helvfont {
    font-family: "Helv" !important;
    font-size: 24px !important;
    font-stretch: ultra-expanded !important;
    letter-spacing: 2px !important;
}

.blur-word {
    display: inline-block;
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    animation: blurFadeIn 1.5s ease-in-out forwards;
    font-family: 'Cinzel', serif;
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    }

    100% {
        opacity: 1;
        text-shadow: none;
        color: black;
    }
}

button,
.button {
    display: inline-block;
    position: relative;
    background-color: transparent;
    margin: 0;
    padding: 3px 3px;
    box-sizing: border-box;
    border-radius: 0;
    color: #000;
    font-family: var(--font-family, "Vinimark-Diatype", system-ui, -apple-system, sans-serif);
    font-size: 1rem;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media (hover: hover) {
    button:hover,
    .button:hover {
        background-color: #000;
        color: #fff;
    }
}

button:active,
.button:active {
    background-color: #000;
    color: #fff;
}

.input-email {
    padding-right: 45px;
}

    .input-email::-webkit-contacts-auto-fill-button {
        visibility: hidden;
        display: none !important;
        pointer-events: none;
        position: absolute;
        right: 0;
    }


.full-page-background {
    background-image: url('/assets/our-wines.jpg'); /* Adjust path to your image */
    background-size: cover; /* Ensures the image covers the entire element */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image repetition */
    height: 100vh; /* Sets height to 100% of the viewport height */
    width: 100vw; /* Sets width to 100% of the viewport width */
    position: fixed; /* Fixes the background to the viewport */
    top: 0;
    left: 0;
    z-index: -1; /* Places the background behind other content */
}
