/*
Theme Name: ICWeb Solutions
Theme URI: https://home.icwebmedia.com/
Author: ICWeb Solutions
Author URI: https://home.icwebmedia.com/
Description: A clean, professional single-page portfolio theme for ICWeb Solutions - Full-Stack Web Development.
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: icweb-solutions
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(148, 163, 184, 0.1);
    --max-width: 800px;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* ============================================
   HEADER / HERO SECTION
   ============================================ */
.site-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 1px solid var(--border);
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.site-header .container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-branding {
    margin-bottom: 30px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.site-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.site-title a:hover {
    color: var(--accent-light);
}

.site-tagline {
    font-size: 1.1rem;
    color: var(--accent-light);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-section a {
    color: var(--accent-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.content-section a:hover {
    border-bottom-color: var(--accent-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.contact-email:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-email svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.site-footer .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .site-header {
        padding: 40px 20px 30px;
    }

    .site-title {
        font-size: 1.75rem;
    }

    .site-tagline {
        font-size: 0.9rem;
    }

    .site-main {
        padding: 40px 20px;
    }

    .content-section p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 30px 20px;
    }
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Admin bar fix */
body.admin-bar .site-header {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        margin-top: 46px;
    }
}
