:root {
    --primary: #ff3d3d;
    --secondary: #00ffaa;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Funnel Sans', cursive;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary);
}

h2 {
    font-size: 2.75rem;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
    /* color: var(--primary); */
    color: rgb(36, 41, 49);
}

/* body {
    background: url('assets/Watermelons - Imgur.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
} */
body {
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(237, 58, 76, 0.35) 0%, rgba(220, 218, 224, 0) 60%),
        radial-gradient(900px 500px at 80% 10%, rgba(207, 86, 118, 0.35) 0%, rgba(206, 206, 206, 0) 65%),
        radial-gradient(800px 400px at 70% 80%, rgba(180, 245, 0, 0.18) 0%, rgba(106, 245, 0, 0) 60%),
        linear-gradient(180deg, #140f0f 0%, #1c1217 60%, #140f0f 100%);
    background-attachment: fixed;
    background-size: cover;
}

.hero-bg {
    /* background-image: url('./assets/hero image.png'); local image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    z-index: -10;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.blockout-card {
    background: rgb(234, 234, 234);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    /* border-radius: 24px; */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 3px 3px 15px rgba(31, 38, 135, 0.2);
}

/* .feature-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
} */

/* Text Colors */
.text-white {
    color: white;
}

.text-black {
    color: black;
}

.text-navy {
    color: rgb(36, 41, 49);
}

.text-lgray {
    color: rgb(57, 57, 57);
}

.text-prim {
    color: rgb(255, 61, 61);
}

.hover-text-prim:hover {
    color: var(--primary);
    /* same color */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 3px 3px 15px 0 rgba(31, 38, 135, 0.2);
}

.chip {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(255, 45, 117, 0.3) !important;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), #F55555);
    box-shadow: 0 4px 20px rgba(255, 45, 117, 0.3);
    transition: all 0.3s ease;
    border-radius: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-styled {
    background: linear-gradient(45deg, #f66767, #F55555);
    box-shadow: 0 4px 20px rgba(152, 44, 82, 0.1);
    transition: all 0.3s ease;
    border-radius: 50px;
    color: white;
}
.btn-styled2 {
    background: linear-gradient(45deg, #4d2121, #2e2e2e);
    box-shadow: 0 4px 20px rgba(152, 44, 82, 0.1);
    transition: all 0.3s ease;
    border-radius: 50px;
    color: #F55555;
}

#form-success {
    transition: opacity 0.3s ease-in;
    opacity: 0;
}

#form-success:not(.hidden) {
    opacity: 1;
}

/* Put in your CSS file */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* keeps everything tidy */
    line-height: 0;
    /* removes tiny baseline gap under images */
    margin: 0;
    /* no extra vertical gaps */
}

.hero-img {
    display: block;
    /* removes inline-image whitespace */
    width: 100%;
    /* always flush left→right */
    height: auto;
    /* keeps correct aspect ratio (no stretch/zoom) */
}