@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@font-face {
    font-family: 'Violet Sans';
    src: url('/wp-content/themes/webblats/fonts/VioletSans-Regular.woff2') format('woff2'),
        url('/wp-content/themes/webblats/fonts/VioletSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    letter-spacing: -4.2px !important;
}
    
body {
    font-family: 'Violet Sans', sans-serif;
    background-color: #F2F2F2;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.max-w-container {
    max-width: 1300px;
}

.body-black {
    color: #1E1E1E;
}

.text-stroke {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #1E1E1E;
}

.cta-button {
    border-radius: 999px;
    border: 1px solid #1E1E1E;
    background: linear-gradient(134deg, #CD4861 10.24%, #EAF6FB 38.46%, #6FD7D4 58.42%, #4A423D 89.9%) !important;
    padding: 12px 30px;
    transition: all;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}

.cta-button:hover {
    background: #FFFFFF !important;
}

.hero {
    background-image: url('/wp-content/themes/webblats/images/header_asset.png');
    background-repeat: no-repeat;
    background-position: right center;
}

.contact-bg {
    background-image: url('/wp-content/themes/webblats/images/star_shape_blue.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

.pricing-section {
    background: linear-gradient(to bottom, #1E1E1E 85%, #F2F2F2 15%) !important;
}

.inter {
    font-family: 'Inter', sans-serif;
}

.input-name, .input-email, .input-message {
    background: none;
    border-bottom: 1px solid #1E1E1E;
    padding-bottom: 4px;
    font-size: 20px;
}

.input-name, .input-email {
    width: 100%;
}

.input-message {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 32px;
    min-height: 128px;
}

.input-name:focus-visible,
.input-email:focus-visible,
.input-message:focus-visible {
    outline: none;
}

#main-cta.cta-button {
    background: #69D5D2 !important;
    color: #1E1E1E;
    padding: 20px 40px;
}

#main-cta.cta-button:hover {
    transform: scale(1.05);
}

/* Animations */

.hero-animation {
	perspective: 600px;
	-webkit-perspective: 600px;
}

.hero-animation .row {
	opacity: 0;
	transform: translateY(100%) rotateX(-80deg);
	transform-origin: center top;
	transform-style: preserve-3d;
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero-animation.is-inview .row {
	opacity: 1 !important;
	transform: none !important;
	transition: 0.8s;
}

.hero-animation .row:first-child {
	transition-delay: 0.1s;
}

.hero-animation .row:nth-child(2) {
	transition-delay: 0.2s;
}
.hero-animation .row:nth-child(3) {
	transition-delay: 0.3s;
}

#pricing-heading span {
    display: inline-block;
}

.c-direction-block_item {
    font-size: 10vw;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    text-transform: uppercase;
    white-space: nowrap;
}

@media(max-width: 640px) {
    .text-stroke {
        -webkit-text-stroke-width: 1px;
    }
}