/*
Theme Name: Urban Geeks
Theme URI: https://urban-geeks.com
Description: Modern, fully customizable WordPress theme for Urban Geeks
Author: Urban Geeks Development
Author URI: https://urban-geeks.com
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urban-geeks
Domain Path: /languages
*/

/* ========================================
   ROOT VARIABLES & GLOBAL STYLES
   ======================================== */

:root {
    --primary: #0f0f23;
    --secondary: #00d9ff;
    --accent: #ff006e;
    --success: #00ff88;
    --warning: #ffa500;
    --neutral-100: #ffffff;
    --neutral-200: #f0f0f0;
    --neutral-300: #e0e0e0;
    --neutral-700: #666666;
    --neutral-800: #333333;
    --neutral-900: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, #0f0f23 0%, #1a1a3f 100%);
    --gradient-neon: linear-gradient(90deg, #00d9ff 0%, #ff006e 50%, #ffa500 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--neutral-800);
    background: var(--neutral-100);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.05rem;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--secondary);
}

a:hover {
    color: var(--primary);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-300);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img,
.custom-logo-link img {
    max-height: 60px;
    width: auto;
    display: block;
}

.custom-logo-link {
    display: inline-block;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--neutral-800);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.cta-nav {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: var(--gradient-primary);
    color: var(--neutral-100);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: slideInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   VERTICALS SECTION
   ======================================== */

.verticals {
    padding: 6rem 0;
    background: var(--neutral-200);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.vertical-card {
    background: var(--neutral-100);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vertical-featured-image {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.vertical-featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vertical-card:hover .vertical-featured-image img {
    transform: scale(1.05);
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vertical-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.vertical-card:hover::before {
    transform: scaleX(1);
}

.vertical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vertical-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.vertical-card p {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.vertical-stat {
    display: inline-block;
    background: var(--neutral-200);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 1rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 6rem 0;
    background: var(--neutral-100);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
}

.feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--secondary);
    background: var(--neutral-200);
    border-radius: 0.3rem;
    animation: slideInUp 0.6s ease-out;
}

.feature-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-item p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.feature-image {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    font-size: 4rem;
}

/* ========================================
   NETWORK PROPERTIES SECTION
   ======================================== */

.network {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--neutral-200) 0%, var(--neutral-100) 100%);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.property-showcase {
    background: var(--neutral-100);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--neutral-300);
}

.property-showcase:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.property-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a3f 0%, #2d2d5f 100%);
    color: var(--neutral-100);
    text-align: center;
}

.property-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--neutral-100);
}

.property-domain {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.property-body {
    padding: 2rem;
}

.property-revenue {
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.property-body ul {
    list-style: none;
}

.property-body li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-body li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* ========================================
   STATISTICS SECTION
   ======================================== */

.stats {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--neutral-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a3f 100%);
    color: var(--neutral-100);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--primary);
    color: var(--neutral-100);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   BADGE
   ======================================== */

.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-nav {
        display: none;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main#main-content {
    min-height: 70vh;
}
