/*
Theme Name: YGZ Split Landing
Theme URI: https://ygzaksesuar.com
Author: YGZ Aksesuar
Author URI: https://ygzaksesuar.com
Description: Split Screen Landing Page WordPress Teması. Bölünmüş ekran açılış sayfası. Tüm içerikler WordPress Customizer'dan değiştirilebilir.
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: ygz-split
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Split Screen Container */
.split-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Image */
.split-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.split-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Logo Area */
.logo-area {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
}

.logo-image {
    max-height: 80px;
    width: auto;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo-text span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #cccccc;
    margin-top: -0.3rem;
}

/* Split Content */
.split-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 4rem;
    align-items: center;
}

.split-side {
    text-align: center;
    padding: 2rem;
}

.split-side.left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.split-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.split-title .highlight {
    display: block;
    color: #60a5fa;
}

.split-title .highlight-right {
    display: block;
    color: #34d399;
}

.split-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Buttons */
.split-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.split-btn-left {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.split-btn-left:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.split-btn-right {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
}

.split-btn-right:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(5, 150, 105, 0.5);
}

.split-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.split-btn:hover svg {
    transform: translateX(4px);
}

/* Footer Bar */
.footer-bar {
    position: relative;
    z-index: 10;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-item:hover {
    color: #ffffff;
}

.footer-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-item a {
    color: inherit;
}

.footer-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .split-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 3rem;
    }
    
    .split-side.left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 3rem;
    }
    
    .logo-area {
        padding: 1.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-divider {
        display: none;
    }
}

/* Hide elements when disabled */
.hidden {
    display: none !important;
}
