/* Temel Stil Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
}

/* Özel Hover Efektleri */
.action-button, .btn, a {
    cursor: pointer;
}

.action-button:hover, .btn:hover {
    box-shadow: 0 0 20px rgba(51, 204, 204, 0.5);
    transform: scale(1.1);
}

/* Logo Overlay */
.logo-overlay {
    display: none;
}

/* Bölünmüş Sayfa Düzeni */
.split-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.split {
    height: 100%;
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: #336699; /* Koyu mavi */
    color: #fff;
    cursor: pointer;
}

.split.left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.split.right {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.split:hover {
    width: 55%;
}

.split:hover + .split {
    width: 45%;
}

/* İçerik Düzeni */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    padding: 20px;
    z-index: 2;
}

.image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.wireframe-image {
    max-height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(51, 204, 204, 0.5));
    transition: all 0.5s ease;
}

.product-image {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.split:hover .wireframe-image {
    transform: scale(1.05) translateY(-5px);
}

.split:hover .product-image {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Metin Stilleri */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.split:hover .text-container h1 {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(51, 204, 204, 0.5);
}

.text-container p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Buton Stili */
.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(51, 204, 204, 0.7);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 204, 204, 0.1);
    border-radius: 50px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.action-button:hover {
    border-color: #33cccc;
}

.action-button:hover::before {
    transform: scale(1);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    
    .split {
        width: 100%;
        height: 50%;
    }
    
    .split.left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .split.right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .split:hover {
        width: 100%;
        height: 55%;
    }
    
    .split:hover + .split {
        width: 100%;
        height: 45%;
    }
    
    .image-container {
        height: 150px;
        margin-bottom: 15px;
    }
    
    .text-container h1 {
        font-size: 1.8rem;
    }
    
    .logo-overlay h1 {
        font-size: 1.2rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loaded {
    animation: fadeIn 0.8s ease-in;
}

/* Alt sayfalar için stil */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.hero {
    background: linear-gradient(rgba(51, 102, 153, 0.9), rgba(51, 102, 153, 0.8));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.back-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(51, 204, 204, 0.5);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: #33cccc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: #336699;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(51, 204, 204, 0.5);
}

main {
    flex: 1;
    padding: 2rem;
}

.content {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #336699;
    margin-bottom: 1rem;
    text-align: center;
}

.content p {
    margin-bottom: 1rem;
    text-align: justify;
}

footer {
    background-color: #336699;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
} 