﻿@font-face {
    font-family: 'Tektur';
    src: url('/fonts/Tektur/Tektur-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tektur';
    src: url('/fonts/Tektur/Tektur-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'Tektur';
    padding: 0;
    margin: 0;
    color: white;
    outline: none;
    text-decoration: none;
    font-size: 14px;
}

body {
    color: #fff;
    margin: 0;
    padding: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(90deg, #ff4444, #d32f2f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 48px;
}

.hero-subtitle {
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    /*    background: #1a1a1a;*/
    border: 1px solid rgba(255,68,68,0.2);
    border-radius: 9999px;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 24px;
    gap: 10px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(255,68,68,0.8);
    animation: badgePulse 1.6s infinite ease-in-out;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

    .logo-link:hover .logo-text {
        opacity: 0.9;
    }

.main {
    background-color: #0a0a0a;
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    background-image: linear-gradient(#33333335 1px, transparent 1px), linear-gradient(90deg, #33333335 1px, transparent 1px);
    background-size: 40px 40px;
}

    .main > *:not(.animated-bg) {
        position: relative;
        z-index: 1;
    }


.page-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 64px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo-icon-text {
    margin-top: 8px;
}

    .logo-icon-text img {
        height: 25px;
        width: auto;
    }

.main-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.capitalize {
    text-transform: uppercase;
}

/*.header-cta {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ff4444, #d32f2f);
    gap: 8px;
}*/

.main-nav .nav-link:hover,
.header-cta:hover {
    color: #fff;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    /*    background: #0f0f0f;*/
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.scrolled {
    max-width: 1280px;
    width: calc(100% - 32px);
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 10px;
    border-color: #ff4444;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: height .3s ease;
    interpolate-size: allow-keywords;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    position: relative;
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-icon img {
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        position: relative;
        z-index: 10;
    }

.logo-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,68,68,0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.main-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    position: relative;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .nav-link.active {
        color: #fff;
        cursor: pointer;
    }

        .nav-link.active::after {
            width: 100%;
            background: #ff4444;
        }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #ff4444;
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: #fff;
    }

        .nav-link:hover::after {
            width: 100%;
        }

.header-cta {
    position: relative;
    padding: 10px 24px;
    /*    background: linear-gradient(90deg, #ff4444, #d32f2f);*/
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

    .header-cta:hover {
        box-shadow: 0px 8px 24px rgba(255,68,68,0.3);
    }

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.header-cta:hover .cta-overlay {
    transform: translateX(0);
}

.site-footer {
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    padding: 48px 16px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

.footer-link {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: #ff4444;
    }

.glass {
    backdrop-filter: blur(15px) saturate(180%);
}

.glass-red {
    background: linear-gradient( 90deg, rgba(255, 68, 68, 0.6), rgba(211, 47, 47, 0.6) )
}

.glass-black {
    background-color: rgba(15, 15, 15, 0.6);
}

.animated-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-red {
    background-color: #ff4444;
    top: 10%;
}

.blob-dark {
    background-color: #bf4c4c;
    top: 50%;
    left: 60%;
}

.blob-soft {
    background-color: #472929;
    top: 70%;
    left: 20%;
}

.lazy-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

    .lazy-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

#menu-icon {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.support-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 14px;
    /*    background: #1a1a1a;*/
    border: 1px solid #2a2a2a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: center;
}

    .support-cta-button svg {
        width: 20px;
        height: 20px;
    }

    .support-cta-button:hover {
        border-color: #ff4444;
        box-shadow: 0 10px 40px rgba(255,68,68,0.25);
    }

    .support-cta-button i {
        transition: transform 0.3s ease;
    }

    .support-cta-button:hover i {
        transform: scale(1.2);
    }

.social {
    display: flex;
    gap: 25px;
}

.social-link {
    transition: transform 0.3s ease;
}

    .social-link:hover {
        transform: scale(1.4);
    }

    @keyframes float {
        0% {
            transform: translateY(0px) translateX(0px) scale(1);
        }

        33% {
            transform: translateY(180px) translateX(340px) scale(1.2);
        }

        66% {
            transform: translateY(150px) translateX(20px) scale(0.8);
        }

        100% {
            transform: translateY(0px) translateX(0px) scale(1);
        }
    }

select{
    padding:5px 50px 5px 20px !important;
    margin:0px !important;
    height:40px;
}

input[type="email"] {
    margin: 0px !important;
    /*padding: 0px 10px 0px 10px !important;*/
    height: 40px !important;
}

input[type="radio"] {
    border-width: 5px !important;
    width: 20px !important;
    height: 20px !important;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 870px) {
    #menu-icon {
        display: block;
        position: absolute;
        top: 22px;
        right: 30px;
    }

    .header-cta {
        display: none;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        height: 64px;
        overflow-y: hidden;
    }

    .main-nav {
        flex-direction: column;
        padding: 16px;
        padding-bottom: 32px;
    }

    .social {
        padding: 16px;
        padding-bottom: 32px;
    }

    .logo {
        height: 64px;
        flex-shrink: 0;
    }

    .open {
        height: auto;
    }
}
