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

body {
    font-family: 'Inter', sans-serif;
}

.font-pinyon {
    font-family: 'Pinyon Script', cursive;
    font-weight: 400;
}

.font-pirata {
    font-family: 'Pirata One', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.font-body {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.font-display {
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

#menu h4.font-display {
    font-weight: 700;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.grain-texture {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

section> :not(.hero-video):not(.hero-overlay):not(.hero-media) {
    position: relative;
    z-index: 1;
}

#header {
    position: relative;
}

#header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#header>* {
    position: relative;
    z-index: 1;
}

#menu {
    background: transparent;
    overflow: visible;
    z-index: 0;
}

#menu::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: -2;
}

#hero {
    position: relative;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-media .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0.35;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.cta-diamonds {
    background-color: #ffffff;
    background-image:
        linear-gradient(45deg, rgba(40, 144, 112, 0.8) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(40, 144, 112, 0.8) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(40, 144, 112, 0.8) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(40, 144, 112, 0.8) 75%);
    background-size: 120px 120px;
    background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
}

.cta-circle {
    display: inline-block;
    padding: 4.5rem 5.5rem;
    background: rgba(255, 255, 255, 0.92);
    clip-path: circle(50% at 50% 50%);
}

.specials-marquee {
    overflow: hidden;
    width: 100%;
}

.specials-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: specials-scroll 22s linear infinite;
    padding: 0 2rem;
}

.specials-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.specials-sep {
    width: 2px;
    height: 48px;
    background: rgba(255, 255, 255, 0.6);
    flex: none;
}

@keyframes specials-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reviews-frame {
    position: relative;
    clip-path: polygon(0 3%,
            2% 0,
            10% 0,
            12% 3%,
            88% 3%,
            90% 0,
            98% 0,
            100% 3%,
            100% 97%,
            98% 100%,
            90% 100%,
            88% 97%,
            12% 97%,
            10% 100%,
            2% 100%,
            0 97%);
}

.reviews-frame::before,
.reviews-frame::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 6px;
    background: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.2) 0 10px,
            rgba(0, 0, 0, 0.05) 10px 20px);
    pointer-events: none;
}

.reviews-frame::before {
    top: 10px;
}

.reviews-frame::after {
    bottom: 10px;
}

#hero::before {
    z-index: 2;
}

.menu-stamp {
    position: absolute;
    top: -14rem;
    right: -2rem;
    width: 440px;
    height: auto;
    opacity: 0.7;
    transform: rotate(-28deg);
    filter: grayscale(70%) contrast(1.2);
    pointer-events: none;
    z-index: 0;
}

.halftone-effect {
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.08;
}
