/*
Theme Name: ZINC - Zonne Corporate Theme
Theme URI: https://zonne.com
Author: Zonne, LLC
Author URI: https://zonne.com
Description: Official WordPress theme for ZINC - A modern, professional theme for the Zonne digital platform ecosystem featuring 14 applications across 4 platforms. Includes custom applications catalog, contest pages, internship portal, and comprehensive support pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zonne
Tags: business, corporate, portfolio, applications, custom-colors, custom-menu, featured-images, responsive-design, theme-options

ZINC Theme - Copyright 2026 Zonne, LLC
*/

/* ========================================
   RESET & BASE STYLES
======================================== */

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

:root {
    --primary: #1e3a8a;
    --primary-dark: #0f172a;
    --secondary: #1e40af;
    --accent: #f97316;
    --success: #10b981;
    --info: #06b6d4;

    --zonne-network: #0757b0;
    --zonne-enterprise: #11aa5b;
    --singleszonne-network: #971805;
    --zonne-entertainment: #bf5024;

    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    --gradient-nav: linear-gradient(to right, #1e3a8a, #0f172a, #1e3a8a);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ========================================
   UTILITY CLASSES
======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

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

.hidden {
    display: none !important;
}

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

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

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   NAVIGATION
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, #1e3a8a, #0f172a, #1e40af);
    height: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
}

.site-logo img {
    height: 48px;
    width: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.site-logo .logo-text {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #1e3a8a, #0f172a, #1e40af);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    display: block;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #f97316;
}

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

.site-footer {
    background: white;
    border-top: 4px solid #001f3f;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-company {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 48px;
    width: 48px;
}

.footer-tagline {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

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

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

.footer-links a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #666;
    font-size: 0.875rem;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1e3a8a;
}

/* ========================================
   CARDS
======================================== */

.card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO SECTIONS
======================================== */

.hero {
    background: linear-gradient(to bottom right, #1e3a8a, #0f172a, #1e40af);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ========================================
   GRADIENTS
======================================== */

.gradient-bg-warm {
    background: linear-gradient(to bottom right, #fff7ed, #d1fae5, #dbeafe);
}

.gradient-navy {
    background: linear-gradient(to bottom right, #1e3a8a, #0f172a, #1e40af);
}

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

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

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

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

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .footer-company {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   DARK MODE
======================================== */

body.dark-mode {
    background: #0f172a;
    color: #e5e7eb;
}

body.dark-mode .card {
    background: #1e293b;
    color: #e5e7eb;
}

body.dark-mode .site-footer {
    background: #1e293b;
    color: #e5e7eb;
}

body.dark-mode .footer-links a,
body.dark-mode .footer-legal a,
body.dark-mode .footer-tagline {
    color: #9ca3af;
}

body.dark-mode .social-link {
    background: #334155;
    color: #e5e7eb;
}

body.dark-mode .social-link:hover {
    background: #f97316;
}
