@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

/* Landing Page Styles */

body {
    background-color: #FFFFFF;
}

/* Header */
.landing-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.landing-header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 3rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.landing-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding-top: 80px;
    /* Header height */
    overflow: hidden;
    overflow: hidden;
    background: #FFFFFF;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #EEF2FF;
    color: var(--primary-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.1);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.font-audiowide {
    font-family: 'Audiowide', cursive;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-family: 'Shadows Into Light', cursive;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(79, 70, 229, 0.1);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-description {
    font-size: 1.25rem;
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
    transition: all 0.3s;
    display: flex;
    font-family: 'Shadows Into Light', cursive;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
    background: var(--primary-hover);
}

.btn-cta-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-main-img {
    width: 130%;
    /* Enlarged styling */
    max-width: none;
    margin-left: -10%;
    /* Re-center after enlarging */
    border-radius: 1rem;
    box-shadow: none;
    border: none;
    transform: none;
    transition: none;
}

.hero-image-wrapper:hover .hero-main-img {
    transform: none;
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
    z-index: 20;
}

.float-card.top-left {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.float-card.bottom-right {
    bottom: 5%;
    right: -5%;
    animation-delay: 2s;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.float-content h4 {
    font-size: 0.875rem;
    margin: 0;
    color: var(--text-secondary);
}

.float-content p {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

/* Brands/Trust */
.trusted-section {
    padding: 2rem;
    text-align: center;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    opacity: 0.6;
    filter: grayscale(100%);
}

.brands-grid i {
    font-size: 2rem;
    transition: all 0.3s;
}

.brands-grid i:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-main-img {
        transform: none;
    }

    .hero-image-wrapper:hover .hero-main-img {
        transform: none;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .float-card {
        display: none;
        /* Hide floating elements on smaller screens */
    }

    .landing-header {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu needed if we want links */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
    }
}