/*
Theme Name: MKX Professionals
Theme DOMAIN: mkx-professionals
Description: Custom theme for MKX Professionals Digital Agency.
Author: Google Deepmind Agent
Version: 1.0
Text Domain: mkx-professionals
*/

:root {
    /* Grayscale */
    --color-white: #ffffff;
    --color-gray-soft: #f4f6f8;
    --color-gray-dark: #2c2c2c;
    /* Backgrounds/Cards */
    --color-gray-darker: #212121;
    /* Text Main */
    --color-gray-medium: #45525c;
    /* Text Secondary */

    /* Orange */
    --color-orange-vibrant: #ffa200;
    --color-orange-soft: #f3b23e;

    /* Blue */
    --color-blue-bright: #02b0ff;
    --color-blue-light: #1fb0fa;
    --color-blue-deep: #018af0;

    /* Font Families */
    --font-primary: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-gray-darker);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
    color: var(--color-gray-dark);
}

a {
    color: var(--color-blue-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-orange-vibrant);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue-bright) 0%, var(--color-blue-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(2, 176, 255, 0.3);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 15px 30px rgba(2, 176, 255, 0.5);
}

.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-gray-darker);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-darker);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    color: var(--color-gray-medium);
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--color-blue-bright);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--color-gray-darker);
    color: #fff;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(2, 176, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 162, 0, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--color-gray-medium);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Services - Glassmorphism */
.services-section {
    padding: 100px 0;
    background-color: var(--color-gray-soft);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--color-gray-medium);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-blue-bright);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(2, 176, 255, 0.1), rgba(2, 176, 255, 0.05));
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--color-blue-bright);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--color-gray-darker);
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.site-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-navigation {
        display: none;
        /* Mobile menu to be implemented */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
}