/* ------------------- */
/* Temel Ayarlar ve Değişkenler */
/* ------------------- */
:root {
    --primary-color: #FFA500; /* Turuncu - Kaplan Rengi */
    --secondary-color: #2c3e50; /* Koyu Mavi/Gri */
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --white-color: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.section {
    padding: 60px 0;
}

.section-light {
    background-color: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #555;
}

/* ------------------- */
/* Header ve Navigasyon */
/* ------------------- */
.header {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(5px);
    color: var(--white-color);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.logo {
    height: 45px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: var(--white-color);
    padding: 10px 15px;
    font-weight: 600;
    transition: color 0.3s, border-bottom-color 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #e69500;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.8rem;
}

/* ------------------- */
/* Hero Bölümü */
/* ------------------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('hero-bg.png') no-repeat center center/cover;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-cta {
    font-size: 1.5rem;
    padding: 15px 30px;
}

/* ------------------- */
/* Hizmetler Bölümü */
/* ------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
}

.service-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ------------------- */
/* Hakkımızda Bölümü */
/* ------------------- */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ------------------- */
/* Galeri Bölümü */
/* ------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ------------------- */
/* İletişim Bölümü */
/* ------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-map iframe {
    border-radius: 8px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* ------------------- */
/* Footer */
/* ------------------- */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 20px 0;
}

/* ------------------- */
/* Mobil Uyumluluk (Responsive) */
/* ------------------- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        position: relative;
    }
    
    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .nav.active {
        max-height: 500px; /* Menü içeriğine göre ayarlanabilir */
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #444;
    }
    
    .nav-link:hover, .nav-link.active {
        border-bottom-color: #444;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .contact-grid {
        padding: 20px;
    }
}

