/* Genel Ayarlar */
body { font-family: 'Times New Roman', serif; margin: 0; background-color: #fdfaf5; color: #333; }
.line { width: 50px; height: 1px; background: #333; margin: 20px 0; }

/* Sol Sosyal Medya Barı */
.social-sidebar { position: fixed; left: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 100; }
.social-sidebar a { color: #333; font-size: 1.2rem; transition: 0.3s; }
.social-sidebar a:hover { color: #999; }

/* Navbar */
.main-nav { text-align: center; padding: 40px 0; background: #fff; position: sticky; top: 0; z-index: 99; }
.main-nav ul { list-style: none; display: flex; justify-content: center; gap: 30px; padding: 0; }
.main-nav a { text-decoration: none; color: #333; font-size: 0.8rem; letter-spacing: 2px; }

/* Hero Section */
.hero-section { height: 100vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.hero-content h1 { font-size: 4rem; letter-spacing: 10px; font-weight: 300; }

/* About Section */
.about-section { display: flex; padding: 100px 10%; align-items: center; gap: 50px; }
.about-image { flex: 1; }
.about-image img { width: 100%; height: 600px; object-fit: cover; }
.about-text { flex: 1; padding: 0 50px; }

/* Portfolio Masonry */
/* Portfolio Bölümü Konteynırı */
.portfolio-section {
    padding: 0; /* Sayfa kenarlarındaki boşluğu sıfırladık */
    background-color: #fff;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start;
}

.portfolio-item {
    flex: 1 1 auto; /* Esneklik katar */
    height: 300px; /* Sabit bir satır yüksekliği */
    margin: 0;
    overflow: hidden;
}

.portfolio-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Görseli bozmadan kutuyu doldurur */
}

/* Wix tarzı zarif bir zoom efekti */
.portfolio-item:hover img {
    transform: scale(1.1);
    z-index: 2;
}

/* Tablet ve Mobil Uyumluluğu */
@media (max-width: 1024px) {
    .portfolio-grid { column-count: 3; }
}
@media (max-width: 768px) {
    .portfolio-grid { column-count: 2; }
}
@media (max-width: 480px) {
    .portfolio-grid { column-count: 1; }
}
/* Slogan Section */
.slogan-section { height: 60vh; background-size: cover; background-attachment: fixed; display: flex; align-items: center; justify-content: center; }
.slogan-content blockquote { font-size: 2rem; color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); font-style: italic; max-width: 600px; text-align: center; }

/* Contact Section */
.contact-section { display: flex; background: #fdfaf5; }
.contact-form-container { flex: 1; padding: 100px 10%; }
.contact-image { flex: 1; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
form input, form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; background: transparent; }
form button { background: #333; color: #fff; border: none; padding: 15px 40px; cursor: pointer; }

/* Footer */
footer { text-align: center; padding: 50px 0; font-size: 0.8rem; }
.back-to-top { text-decoration: none; color: #333; display: block; margin-bottom: 20px; }