* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Sol Taraf - Ana Bilgiler */
.main-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.project-icon {
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.project-icon:hover {
    transform: translateY(-2px);
}

.project-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

/* Sa Taraf - Bilgi Kartları */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.info-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    margin: 0;
}

.info-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Hakkında Bölümü */
.about-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .main-info {
        align-items: center;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-icon {
        width: 100px;
        height: 100px;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .about-section p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper,
.about-section {
    animation: fadeInUp 0.6s ease-out;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.social-icons a {
    margin-right: 20px; /* İkonlar arasına 15 piksel boşluk bırakır */
    font-size: 24px; /* İkonların boyutunu ayarlar */
    color: #fa8c48; /* İkonların rengini ayarlar */
}

@media (max-width: 480px) {
    .project-icon {
        width: 310px;
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
}

@media (max-width: 480px) {
    .project-icon img {
    height: 80%;
    }
}