/*
Theme Name: AICollab X
Description: Minimal theme for AICollab X website with Elementor compatibility
Author: AICollab X Team
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(to bottom, #0F0A1F 0%, rgba(147, 51, 234, 0.2) 50%, #0F0A1F 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.1) 0%, transparent 50%, rgba(59, 130, 246, 0.1) 100%);
    pointer-events: none;
}

/* Custom Colors */
:root {
    --primary-purple: #6B46C1;
    --primary-blue: #3B82F6;
    --dark-bg: #0F0A1F;
    --card-bg: #1A1330;
    --accent-blue: #4588FF;
}

/* Typography */
.font-saiga {
    font-family: 'Saiga Trial Black', 'Inter', system-ui, sans-serif;
}

.font-dm-sans {
    font-family: 'DM Sans', system-ui, sans-serif;
}

/* Elementor Compatibility */
.elementor-widget-container {
    color: inherit;
}

.elementor-section {
    position: relative;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 50;
    padding: 0 16px;
}

.nav-container {
    margin: 0 auto;
    width: 90%;
    max-width: 1280px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    padding: 8px 32px 8px 32px;
    border: 1px solid rgb(229, 231, 235);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.nav-logo img {
    height: 32px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 48px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgb(55, 65, 81);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.2s;
}

.nav-link:hover {
    color: rgb(17, 24, 39);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-cta {
    background: #3B82F6;
    color: white;
    width: 156px;
    height: 44px;
    border-radius: 9999px;
    padding: 12px 24px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 19.5px;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    background: #1D4ED8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    display: block;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #070F39;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-content {
    padding: 64px 64px 0;
    flex-grow: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo img {
    height: 48px;
    margin-bottom: 24px;
}

.footer-description {
    color: white;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.footer-nav h4 {
    color: #4588FF;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 19.5px;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #60A5FA;
}

.footer-bottom {
    background-color: #0F194F;
    margin-top: 48px;
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: white;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 0;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #60A5FA;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

/* Orbital animations for integrations section */
@keyframes orbit-circle1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(325px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(325px) rotate(-360deg); }
}

@keyframes orbit-circle2 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(450px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(450px) rotate(-360deg); }
}

@keyframes orbit-circle3 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(600px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(600px) rotate(-360deg); }
}

@keyframes orbit-circle4 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(750px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(750px) rotate(-360deg); }
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* WordPress specific */
.wp-block-image {
    margin: 0;
}

/* Elementor overrides */
.elementor-page .site-header,
.elementor-page .site-footer {
    display: block;
}