/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
}

/* --- NAVBAR ALANI --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo span {
    color: #ff2a2a;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #ff2a2a;
}

/* --- HERO (GİRİŞ) ALANI --- */
.hero {
    height: 100vh;
    /* Klasörün içindeki resmi göstermek için yolunu (path) böyle belirtiyoruz: */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('images/backgraund.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    color: #ff2a2a;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .btn {
    background-color: #ff2a2a;
    color: #ffffff;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}

.hero .btn:hover {
    background-color: #d61e1e;
    transform: translateY(-2px);
}

/* --- ORTAK SECTİON YAPISI --- */
section {
    padding: 100px 8% 60px 8%;
    text-align: center;
}

.section-title {
    color: #ff2a2a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* --- MENÜ ALANI --- */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.menu-card {
    background-color: #141414;
    border: 1px solid #2a1010;
    padding: 30px 20px;
    border-radius: 8px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.menu-card:hover {
    border-color: #ff2a2a;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 42, 42, 0.1);
}

.menu-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* --- HİZMETLER ALANI --- */
#hizmetler {
    background-color: #090909;
}

.hizmet-desc {
    font-size: 18px;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background-color: #050505;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    border-top: 1px solid #111111;
}

/* Mobil Cihazlar İçin Uyumlu Tasarım (Responsive) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 15px;
    }
    nav ul {
        gap: 15px;
    }
}

/* --- YUKARI ÇIK BUTONU GARANTİ STİLLERİ --- */
#scrollToTopBtn {
    display: none; /* JS bunu 'block' yapacak */
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important; /* En üste çıksın diye değeri büyüttük */
    border: none !important;
    outline: none !important;
    background-color: #ff2a2a !important;
    color: #ffffff !important;
    cursor: pointer !important;
    padding: 15px !important;
    border-radius: 50% !important; /* Tam yuvarlak garanti */
    font-size: 20px !important;
    width: 50px !important;
    height: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.5) !important;
    transition: 0.3s ease !important;
    text-align: center !important;
    line-height: 20px !important;
}

#scrollToTopBtn:hover {
    background-color: #ffffff !important;
    color: #ff2a2a !important;
    transform: translateY(-5px) !important;
}

/* --- EN ALTTAKİ KONUM ALANI STİLLERİ --- */
#konum-alani {
    background-color: #0d0d0d;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #2a1010; /* Sitenin siyah-kırmızı konseptine uygun koyu çerçeve */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigasyon Butonu */
.nav-btn {
    display: inline-block;
    background-color: #ff2a2a; /* Adres kırmızısı */
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}

.nav-btn:hover {
    background-color: #ffffff;
    color: #ff2a2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 42, 42, 0.5);
}

/* --- EN ALTTAKİ KONUM ALANI STİLLERİ --- */
#konum-alani {
    background-color: #0d0d0d;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #2a1010;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigasyon Butonu */
.nav-btn {
    display: inline-block;
    background-color: #ff2a2a;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}

.nav-btn:hover {
    background-color: #ffffff;
    color: #ff2a2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 42, 42, 0.5);
}


/* --- İLETİŞİM ALANI STİLLERİ --- */
#iletisim-alani {
    background-color: #0d0d0d;
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
}

.iletisim-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Mobilde kartlar alt alta düzgünce insen diye */
}

.iletisim-kart {
    background-color: #141414;
    border: 1px solid #2a1010; /* Koyu kırmızı ince çerçeve */
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.iletisim-kart:hover {
    transform: translateY(-8px);
    border-color: #ff2a2a; /* Üzerine gelince parlayan Adres kırmızısı */
}

.kart-ikon {
    font-size: 35px;
    margin-bottom: 15px;
}

.iletisim-kart h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.iletisim-kart p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
}

.iletisim-kart span {
    color: #ff2a2a;
    font-weight: bold;
    font-size: 16px;
}

.iletisim-link {
    color: #ff2a2a;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.iletisim-link:hover {
    color: #ffffff; /* Linklerin üzerine gelince beyaza dönsün */
}




    
@media (max-width: 480px) {
    header {
        padding: 10px;
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 18px;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
    }
}