* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body { background: #fdfdfd; color: #444; line-height: 1.8; }

/* Menü Tasarımı */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #2c3e50;
    color: white;
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 25px; }
nav ul li a { color: #ecf0f1; text-decoration: none; font-weight: 500; transition: 0.3s; }
nav ul li a:hover, .active { color: #f1c40f; }

/* Hero Bölümü */
.hero-tarsus {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/tarsus-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay h1 { font-size: 4rem; letter-spacing: 5px; text-transform: uppercase; }
.hero-overlay p { font-size: 1.2rem; font-style: italic; }

/* İçerik Alanı */
.container { width: 80%; margin: 50px auto; }

.info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 50px;
}

.info-card h2 { color: #2c3e50; margin-bottom: 20px; border-bottom: 3px solid #f1c40f; display: inline-block; }

/* Üçlü Kart Yapısı */
.grid-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 5px solid #2c3e50;
    transition: 0.3s;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.card i { font-size: 3rem; color: #f1c40f; margin-bottom: 15px; }
.card h3 { margin-bottom: 15px; color: #2c3e50; }

/* Footer */
footer { background: #2c3e50; color: white; text-align: center; padding: 30px; margin-top: 50px; }
/* Hakkımda Sayfası Özel Stilleri */
.about-profile {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%; /* Resmi yuvarlak yapar */
    object-fit: cover;
    border: 8px solid #f1c40f; /* Resmin etrafına sarı çerçeve */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-text {
    flex: 1;
    text-align: left;
}

.profile-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-text hr {
    width: 50px;
    border: 2px solid #f1c40f;
    margin-bottom: 20px;
}

.profile-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

/* Yetenek Etiketleri */
.skills {
    margin-top: 20px;
}

.skill-tag {
    display: inline-block;
    padding: 8px 15px;
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .profile-text {
        text-align: center;
    }
    .profile-text hr {
        margin: 10px auto 20px auto;
    }
}
/* Galeri Sayfası Özel Stilleri */
.gallery-main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    color: #e67e22; /* Turuncu tonları iştah açıcı ve sıcak durur */
    border-bottom: 3px solid #e67e22;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 5px;
}

/* Kart Tasarımı */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.caption {
    padding: 15px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

/* Mobil için başlık ayarı */
@media (max-width: 768px) {
    .gallery-main-title { font-size: 2rem; }
}
/* İletişim Sayfası Özel Stilleri */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #3498db;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Harita ve Bilgi Alanı */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.info-item i {
    color: #e67e22;
    font-size: 1.5rem;
}

.map-container {
    margin-top: 20px;
    overflow: hidden;
}

/* Mobil için Ayar */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Mobilde form ve harita alt alta gelir */
    }
}