/* landing.css - Special styles for the high-end landing page */

:root {
    --landing-bg: #0a0c10;
    --accent-glow: rgba(26, 115, 232, 0.15);
}

.landing-body {
    background-color: var(--landing-bg);
    color: #fff;
    overflow-x: hidden;
}

/* Glassmorphism Navbar */
.landing-nav {
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #ffffff;
    /* Sørger for at denne alltid er hvit */
}

.hero .gradient-text {
    background: linear-gradient(90deg, #1a73e8, #8ab5f8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Premium Buttons */
.landing-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none !important;
}

.btn-glow {
    background: #1a73e8;
    color: #ffffff !important;
    /* Tvinger teksten til å være hvit */
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.4);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(26, 115, 232, 0.6);
}

/* Feature Grid */
.features {
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(26, 115, 232, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1a73e8;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #fff;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero {
        padding-top: 120px;
    }
}