/*
Theme Name: Ste Kwik Koders
Theme URI: https://stekwikkoders.com
Author: Ste Kwik Koders
Author URI: https://stekwikkoders.com
Description: A modern portfolio theme for Kwik Koders - Software Engineering Solutions
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Ste Kwik koders
Tags: portfolio, consulting, business, one-page, custom-colors, custom-logo
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    background: white;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.site-logo {
    width: 60px;
    height: 60px;
    background: #2c3e6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 62, 111, 0.3);
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e6f;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #2c3e6f;
}

.download-btn {
    background: #2c3e6f;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 62, 111, 0.3);
}

.download-btn:hover {
    background: #1f2d4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 111, 0.4);
}

/* Social Icons */
.social-icons {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 50;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2c3e6f;
    font-size: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: #2c3e6f;
    color: white;
    transform: scale(1.1);
    border-color: #5b7db8;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 100px;
    position: relative;
    min-height: 70vh;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.profile-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: grayscale(20%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.accent-circle {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 380px;
    height: 380px;
    border-color: #5b7db8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
}

.circle-2 {
    width: 200px;
    height: 200px;
    border-color: #7d9fd4;
    top: -40px;
    right: -40px;
    border-top-color: transparent;
    border-left-color: transparent;
}

.come-on-text {
    position: absolute;
    top: 0;
    right: -100px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 8px;
    color: #2c3e6f;
    transform: rotate(-15deg);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 30px 0 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-title span {
    color: #5b7db8;
}

.hero-subtitle {
    font-size: 24px;
    color: #555;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Services Section */
.services-section {
    padding: 80px 100px;
    background: #f8f9fa;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e6f;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(44, 62, 111, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e6f;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(44, 62, 111, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-info {
    padding: 25px;
    background: white;
}

.portfolio-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e6f;
    margin-bottom: 10px;
}

.portfolio-category {
    color: #888;
    font-size: 14px;
}

/* Companies Section */
.companies-section {
    padding: 50px 100px 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #e0e0e0;
}

.company-logo {
    font-size: 28px;
    font-weight: 700;
    color: #888;
    opacity: 0.6;
    transition: all 0.3s;
}

.company-logo:hover {
    opacity: 1;
    color: #2c3e6f;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 100px;
    background: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e6f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5b7db8;
}

.submit-btn {
    background: #2c3e6f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 62, 111, 0.3);
}

.submit-btn:hover {
    background: #1f2d4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 111, 0.4);
}

/* Footer */
.site-footer {
    background: #2c3e6f;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-content p {
    margin: 10px 0;
}

/* Background Decorations */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8eef7 0%, #d4e0f0 100%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 100px;
    background: linear-gradient(135deg, #fef5f0 0%, #fce8dc 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .site-header {
        padding: 20px 30px;
    }

    .hero-section {
        padding: 40px 50px;
    }

    .social-icons {
        left: 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .services-section,
    .portfolio-section,
    .contact-section {
        padding: 60px 50px;
    }

    .companies-section {
        padding: 40px 50px 60px;
    }
}

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

    .social-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 20px 0;
        transform: none;
    }

    .hero-section {
        flex-direction: column;
        padding: 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .come-on-text {
        right: -60px;
        font-size: 14px;
    }

    .services-section,
    .portfolio-section,
    .contact-section {
        padding: 40px 20px;
    }

    .companies-section {
        padding: 30px 20px;
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
