/*
  Özel CSS Stilleri
  Bootstrap'ın üzerine modern dokunuşlar
*/

/* --- GENEL SABİT RENK DEĞERİ --- */
/* Okunaklı ve canlı turuncu tonunuzu sabitledik. */
:root {
    
    --brand-orange: #FF8C00;      /* Canlı Turuncu */
    --brand-orange-hover: #E67A00; /* Hover için daha koyu Turuncu */
}


/* Genel scroll davranışı + scrollspy için */
html {
    scroll-behavior: smooth;
}


body {
    position: relative;
    font-family: 'Roboto', sans-serif;
}

/* Başlıklar için farklı kalınlık kullanmak isterseniz */
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
/* ===================== */
/* NAVBAR & BRAND      */
/* ===================== */

.navbar {
    background: rgba(255, 255, 255, 0.87) !important;
    backdrop-filter: blur(10px);
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
}

.navbar-logo-icon {
    height: 48px;
    width: auto;
    display: block;
    margin-right: 0.6rem;
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
}

/* "and" için özel gradient */
.brand-highlight {
    background: linear-gradient(90deg, #FF6A00, #FF3C7B, #7646FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Navbar linkleri */
.navbar .nav-link {
    font-size: 1.15rem; /* Menü font büyüklüğünü artırdık */
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.2s ease;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--brand-orange); /* Turuncu tonunu sabitledik */
}

.navbar .nav-link.active {
    color: var(--brand-orange); /* Turuncu tonunu sabitledik */
}

/* Aktif linkin altına ince bar */
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background-color: var(--brand-orange); /* Turuncu tonunu sabitledik */
}

/* Mobilde logo ve yazı biraz küçülsün */
@media (max-width: 768px) {
    .navbar-logo-icon {
        height: 40px;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}

/* ===================== */
/* HERO BÖLÜMÜ         */
/* ===================== */

.hero-section {
    min-height: 100vh;
    background: url("images/hero-bg.svg") center center/cover no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

/* Karanlık overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* --- Hero Butonu Özel Stilleri --- */

/* Butonun Temel Özellikleri */
.btn-hero-glow {
    /* Oval şekil için yuvarlaklık */
    border-radius: 50px; 
    
    /* BAŞLANGIÇ DURUMU: Konturlu ve Şeffaf İç */
    background-color: transparent !important;
    color: var(--brand-orange); /* Metin rengi Turuncu */
    border: 2px solid var(--brand-orange); /* Turuncu kontur */
    
    /* Yumuşak geçiş efektleri için */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* HOVER DURUMU: Turuncu Dolgu ve Daha Az Parlama */
.btn-hero-glow:hover {
    background-color: var(--brand-orange) !important; /* İçini turuncuyla doldur */
    color: white !important;
    
    /* Parlama Efekti: Parlaklığı azalttık (0.4 opaklık ve 15px yayılma) */
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4); 
    
    transform: translateY(-3px); 
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #f8f9fa;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-section .lead {
    color: #f8f9fa;
    /* YENİ: Hafif beyaz gölge ile metin kontrastını artırdık */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6); 
    /* Eski text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35); kalırsa da sorun olmaz, hatta bazen daha iyidir.
       Eğer metin arka planın açık renkli kısımlarında kayboluyorsa, bu yeni gölge yardımcı olacaktır.
    */
}

/* Küçük ekranlarda hero başlığı ve lead metni biraz küçülsün */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }
}

/* ===================== */
/*   HİZMETLER BÖLÜMÜ    */
/* ===================== */

.feature-showcase {
    background-color: #f8f9fa;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    padding: 3rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    will-change: transform; /* Performans optimizasyonu */
    position: relative; /* z-index'in çalışması için */
}

.feature-showcase:hover {
    /* Hafifçe büyütme */
    transform: scale(1.02);
    /* Büyürken daha belirgin bir gölge verme */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    /* Büyürken diğer elementlerin üzerine çıkması için */
    z-index: 10;
}

.feature-showcase h2 {
    color: #343a40;
}

.feature-showcase ul {
    list-style: none; 
    padding-left: 0;
}

.feature-showcase ul li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.feature-showcase .btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.feature-showcase .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

/* Görsel container */
.feature-image-container {
   /* background-color: white; */ 
    border-radius: 1rem;
    padding: 1rem;
   /* box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05); */
}

.feature-image-container img {
    max-width: 100%;
    height: auto;
    display: block; 
    margin: 0 auto;
}

/* ===================== */
/*   HAKKIMIZDA GÖRSEL   */
/* ===================== */

.image-container-hakkimizda {
   /*background-color: #e9ecef; */ 
    border-radius: 1rem;
    padding: 2rem;
   /*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);*/ 
}

.image-container-hakkimizda img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===================== */
/*   HABERLER BÖLÜMÜ     */
/* ===================== */

/* Haberler bölümünü tam ekran içinde ortala */
#haberler {
    min-height: 100vh;
    padding: 4rem 0; /* üst-alt nefes alsın */
}

#haberler .container {
    min-height: calc(100vh - 8rem); /* padding’i düşüyoruz */
    display: flex;
    flex-direction: column;
    justify-content: center; /* dikey ortalama */
}


.news-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem;          /* kartın içini büyüttük */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
}

.news-img {
    width: 170px;                  /* logo biraz büyüsün */
    height: auto;
    margin-top: 0.5rem;
    object-fit: contain; 
}

/* Detaylar butonu */
.btn-warning {
    background-color: #ff8c00; 
    border-color: #ff8c00;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #e67e22; 
    border-color: #e67e22;
    color: white;
}

/* ===================== */
/*   İLETİŞİM BÖLÜMÜ     */
/* ===================== */

.contact-container {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

/* Form Alanı İkonları: Mavi yerine Turuncu yapıldı */
.input-group-text.contact-icon,
.input-group-text.contact-icon-top {
    background-color: #f8f9fa;
    border: none;
    font-size: 1.1rem;
    color: var(--brand-orange); /* İkon rengi Turuncu */
    border-radius: 0.5rem 0 0 0.5rem;
}

.input-group-text.contact-icon-top {
    height: 100%;
    align-items: flex-start;
    padding-top: 1rem;
}

.form-control-lg {
    border: 1px solid #e9ecef;
    border-left: none;
    box-shadow: none !important;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 1rem;
}

/* İletişim bilgi kartları */
.contact-info-card {
    background-color: #f8f9fa; 
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* İkon Daireleri: Mavi yerine Turuncu, ikonlar beyaz */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    
    /* YENİ STİLLER */
    background-color: var(--brand-orange); /* Daire arka planı Turuncu */
    color: white; /* İkon rengi Beyaz */
}

/* Gönder butonu: Mavi yerine Turuncu */
.btn-primary {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.btn-primary:hover {
    background-color: var(--brand-orange-hover); 
    border-color: var(--brand-orange-hover);
}

/* ===================== */
/*   FOOTER              */
/* ===================== */

.main-footer {
    font-size: 0.95rem;
}

.footer-social-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* ===================== */
/*   BÖLÜM YÜKSEKLİĞİ    */
/* ===================== */

#anasayfa,
#hizmetler,
#hakkimizda,
#haberler,
#iletisim {
    min-height: 100vh;
    scroll-margin-top: 90px; /* sticky navbar için offset */
}
