/* Genel Ayarlar ve Renk Paleti - AÇIK & MODERN TEMA */
:root {
    --bg-color: #f7f8fa;
    --text-color: #2b2d42;
    --accent-color: #b38b4d; 
    --card-bg: rgba(255, 255, 255, 0.95); /* Arkadaki desenin hafifçe hissedilmesi için */
    --border-color: #e2e8f0; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* 🔥 SİHİRLİ ARKA PLAN (Resim İndirmeye Gerek Yok) 🔥 */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    opacity: 0.12; /* İkonların belirginliği (çok açarsan göz yorar, bu tam kıvamında) */
    /* Kodun içine gömülü rengarenk prodüksiyon ikonları */
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='20' y='40' font-size='24'%3E🎥%3C/text%3E%3Ctext x='100' y='70' font-size='24'%3E📸%3C/text%3E%3Ctext x='40' y='120' font-size='24'%3E🎵%3C/text%3E%3Ctext x='120' y='140' font-size='24'%3E🎬%3C/text%3E%3Ctext x='80' y='30' font-size='24'%3E🚁%3C/text%3E%3C/svg%3E");
    background-size: 160px 160px;
}

/* Navigasyon Menüsü */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero (Ana Giriş) Bölümü */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: transparent; /* Arka plan deseninin görünmesi için */
}

.hero-content {
    background: rgba(255, 255, 255, 0.85); /* Yazıların arkasına şık bir buzlu cam efekti */
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    background-color: var(--text-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--text-color);
}

/* Ortak Bölüm Ayarları */
.about, .services, .contact {
    padding: 100px 20px;
    text-align: center;
}

.about {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    display: block;
    margin: 10px auto 0;
}

p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Hizmetler Bölümü */
.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto 0;
}

.card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* İletişim Bölümü */
.contact-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.person h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.person p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-color); /* Numaralar dikkat çeksin */
}

.person i {
    color: var(--text-color);
    margin-right: 8px;
}

.location-details p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.location-details i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Instagram Butonu */
.social-media {
    margin-top: 35px;
}

.instagram-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--text-color);
    color: #ffffff;
    font-size: 0.9rem;
}