﻿/* Moreno Travel Teması - Renk Değişkenleri */
:root {
    --primary-red: #D91122; /* Ana kırmızı */
    --bright-red: #F21B1B; /* Parlak kırmızı */
    --orange: #F27C38; /* Turuncu */
    --gold: #F2A950; /* Altın / sarı-turuncu */
    --dark-bg: #1a1a1a;
    --light-bg: #fffaf0;
}

/* ======================== 
   GENEL & TIPOGRAFİ 
======================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: #333;
    font-size: 0.94rem; /* biraz küçültülmüş genel font */
}

h1, h2, h3,
.display-3, .display-5 {
    color: var(--primary-red);
    font-weight: 700;
}

.display-3 {
    font-size: 2.6rem;
}

.display-4 {
    font-size: 3.2rem;
}

.display-5 {
    font-size: 1.3rem;
}

h2 {
    font-size: 1.95rem;
}

h3 {
    font-size: 1.4rem;
}

.lead {
    font-size: 1.05rem;
}

.text-shadow {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.text-warning {
    color: var(--orange) !important;
}

/* ======================== 
   BUTONLAR 
======================= */
.btn {
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px) scale(1.05);
    }

.btn-lg {
    padding: 1.7rem 1.8rem;
    font-size: 0.90rem;
    border-radius: 40px;
    min-width: 250px;
}

.btn-warning,
.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
    font-weight: bold;
}

    .btn-warning:hover,
    .btn-primary:hover {
        background-color: var(--orange);
        border-color: var(--orange);
    }

.btn-outline-warning {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

    .btn-outline-warning:hover {
        background-color: var(--primary-red);
        color: white;
    }

.col-lg-7 {
    margin-top: -7%;
}

.btn-danger {
    background-color: #d12c0e !important;
    border-color: #d12c0e !important;
    color: white !important; /* yazı rengi beyaz kalsın */
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger:active {
        background-color: #b81f0c !important; /* biraz daha koyu hover efekti */
        border-color: #b81f0c !important;
    }

    .btn-danger:disabled {
        background-color: #d12c0e80 !important; /* yarı saydam disabled hali */
        border-color: #d12c0e80 !important;
    }
/* ======================== 
   KARTLAR & HOVER EFEKTLERİ 
======================= */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background-color: white;
}

    .card:hover,
    .hover-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(217,17,34,0.12);
    }

.card-body {
    padding: 1.25rem 1.1rem !important;
}

.card h3, .card h5 {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.card p, .card ul li {
    font-size: 0.92rem;
}

/* ========================
   HEADER / NAVBAR
======================= */
header {
    background: #cd1b0e !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    height: 80px;
    display: flex;
    align-items: center;
}

    header .navbar {
        padding: 0;
        width: 100%;
    }

    header .navbar-brand {
        padding: 0;
        margin-right: 3rem !important; /* logo-menü arası – 4rem çok fazla olabilir, 3rem daha dengeli */
    }

    header img {
        width: 370px; /* senin tercih ettiğin boyuta yakın */
        height: auto;
        filter: brightness(1.1) contrast(1.1);
    }

    /* Menüyü sağa yaslama */
    header .navbar-collapse {
        justify-content: flex-end !important;
    }

    header .navbar-nav {
        gap: 4rem; /* 6rem çok geniş → taşma riski var, 4-5rem ideal */
        margin-left: auto !important; /* ekstra güvenlik */
    }

        /* Link stilleri */
        header .navbar-nav .nav-link {
            padding: 0.6rem 0;
            font-size: 15px;
            font-weight: 600;
            color: white !important;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

            header .navbar-nav .nav-link:hover,
            header .navbar-nav .nav-link:focus {
                color: var(--gold) !important; /* var(--gold) tanımlıysa */
            }

        header .navbar-nav .dropdown-toggle::after {
            margin-left: 0.6rem;
            vertical-align: 0.2em;
        }

    /* Arama ikonu */
    header .ms-auto a,
    header .ms-3 a,
    header .ms-lg-4 a {
        padding: 0.6rem 1rem;
        display: flex;
        align-items: center;
        color: white;
    }
/* Dropdown menüdeki yazıları zorla görünür yap */
.dropdown-menu {
    background-color: #ffffff !important; /* beyaz arka plan (veya istediğin renk) */
    border: 1px solid rgba(0,0,0,0.15) !important; /* hafif kenar */
    box-shadow: 0 6px 12px rgba(0,0,0,0.175) !important;
}

    .dropdown-menu .dropdown-item {
        color: #212529 !important; /* koyu siyah/gri yazı – Bootstrap varsayılanı */
        background-color: transparent !important;
    }

        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background-color: rgba(209, 44, 14, 0.1) !important; /* #d12c0e'nin çok açık hali */
            color: #d12c0e !important; /* hover'da turuncu/kırmızı yazı */
        }

/* Eğer dropdown koyu tema istiyorsan alternatif */
.dropdown-menu-dark .dropdown-item {
    color: #ffffff !important;
}

    .dropdown-menu-dark .dropdown-item:hover,
    .dropdown-menu-dark .dropdown-item:focus {
        background-color: rgba(255,255,255,0.15) !important;
        color: #ffffff !important;
    }

/* Mobil */
@media (max-width: 991px) {
    header {
        height: auto;
        padding: 1rem 0;
    }

        header .navbar-nav {
            gap: 2rem;
            text-align: center;
            margin: 1.5rem 0;
        }

        header .navbar-collapse {
            justify-content: center !important; /* mobilde ortalı güzel durur */
        }

        header .navbar-brand {
            margin-right: 2rem !important;
        }
    /* Arama mobilde de ortada olsun istersen buraya ekle */
}
/* ======================== 
   HERO SECTION 
======================= */
.hero-section {
    max-height: 78vh;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.sun-hero {
    max-height: 450px;
    width: 45vw;
    max-width: 400px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.35));
    margin-top: -10%;
}

.hero-section .container {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Hero üstüne taşan 3 kart bloğu */
.hero-section + .container.position-relative {
    margin-top: -100px !important; /* görseldeki gibi daha belirgin taşma için -100px yaptım, istersen -80px'e düşür */
    z-index: 10;
}

.hero-section + .container .card {
    padding: 1.5rem 1.2rem !important; /* biraz daha ferah iç boşluk */
    border-radius: 10px !important; /* daha modern yuvarlak köşe */
    box-shadow: 0 8px 20px rgba(0,0,0,0.09) !important;
    transition: all 0.3s ease;
    background: white !important;
    max-width: 350px;
    max-height: 500px;
}

    .hero-section + .container .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 32px rgba(217,17,34,0.14) !important;
    }

.hero-section + .container h5 {
    font-size: 1.55rem !important;
    margin-bottom: 0.75rem !important;
    color: var(--primary-red); /* temana uygun kırmızı başlık */
}

.hero-section + .container p {
    font-size: 0.95rem !important;
    margin-bottom: 0;
}

/* Yeni: kartlardaki ikonlar için stil */
.hero-section + .container .card img {
    width: 94px !important;
    height: 94px !important;
    margin-bottom: 1rem !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-section + .container .card:hover img {
    transform: scale(1.12); /* hover'da ikon hafif büyüsün – güzel efekt */
}
/* ======================== 
   HAKKIMIZDA BÖLÜMÜ 
======================= */
/* Hakkımızda bölümü için ek stiller */
#hakkimizda h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

    #hakkimizda h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: #dc3545; /* danger rengi */
        border-radius: 4px;
    }


/* <<--hizmetlerimiz--> */
#iletisim .hizmetler-kismi {
    padding: 2rem 1.8rem;
    margin-top: -80px;
}



#iletisim .hizmetler-baslik {
    font-size: 1.85rem; /* küçülttüm */
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1.6rem;
    position: relative;
    display: inline-block;
}

    #iletisim .hizmetler-baslik::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
        border-radius: 4px;
    }

#iletisim .hizmet-listesi li {
    font-size: 1.05rem; /* küçülttüm */
    line-height: 1.6;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: flex-start;
    color: #333;
}

    #iletisim .hizmet-listesi li:hover {
        color: var(--primary-red);
    }

#iletisim .hizmet-listesi i {
    font-size: 1.35rem;
    margin-right: 1rem;
    margin-top: 0.15rem;
    color: var(--warning);
    flex-shrink: 0;
}

/* Form kartı stili */
#iletisim .form-karti {
    background: white;
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 1.25rem;
    padding: 2rem 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    margin-top: 60px;
    width: 570px;
    margin-left: auto;
    height: 300px; /* istediğin değeri yaz, px, vh, rem vs. olabilir */
    min-height: 450px;
    overflow-y: auto; /* içerik taşarsa dikey scroll çıksın */
}

    #iletisim .form-karti:hover {
        box-shadow: 0 12px 28px rgba(0,0,0,0.09);
    }

#iletisim .form-baslik {
    font-size: 1.85rem; /* hizmetlerle aynı boyutta */
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1.6rem;
    position: relative;
    display: inline-block;
    
}

    #iletisim .form-baslik::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--primary-red);
        border-radius: 4px;
    }

/* Form elemanları küçültme */
.form-control-md {
    font-size: 1rem; /* placeholder ve yazı boyutu küçüldü */
    padding: 0.75rem 1.1rem;
    border-radius: 0.7rem;
    height: calc(1.5em + 1rem + 2px); /* lg'den md'ye geçiş */
}

    .form-control-md:focus {
        border-color: var(--primary-red);
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.18);
    }

.btn-md {
    font-size: 1.05rem;
    padding: 0.75rem 1.5rem;
}

/* Textarea otomatik yükseklik ayarı (auto-grow) */
textarea.form-control {
    min-height: 120px; /* başlangıç minimum yüksekliği (5 satır civarı) */
    max-height: 300px; /* çok uzamasın diye üst sınır (isteğe göre değiştir) */
    height: auto; /* otomatik yükseklik */
    resize: vertical; /* sadece dikey yönde resize edilebilsin (kullanıcı elle büyütebilsin) */
    overflow-y: hidden; /* scroll bar çıkmasın */
    padding: 0.75rem 1rem; /* iç boşlukları güzel tut */
}


/* ========================
   FOOTER
======================= */
footer {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('background.png') center/cover no-repeat fixed;
    background-blend-mode: multiply;
    color: white;
}

    footer .container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    footer hr {
        opacity: 0.5;
        margin: 1.25rem 0;
    }

    footer p.mb-0 {
        font-size: 0.9rem;
    }

    /* Yeni eklenenler – sadece düzen için */
    footer .footer-links a {
        transition: color 0.3s;
    }

        footer .footer-links a:hover {
            color: #ee6227 !important; /* turuncu tonu hover efekti – istersen kaldır */
        }

    footer .social-icons a:hover {
        color: #ee6227 !important;
        transform: scale(1.2);
        transition: all 0.3s;
    }
/* ========================
   RESPONSIVE DÜZENLEMELER – Güncellenmiş hali
======================= */

/* Küçük telefonlar (max 576px) */
@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 1rem !important;
    }

        .hero-section h1 {
            font-size: 1.8rem !important;
            line-height: 1.2;
            margin-bottom: 1rem !important;
        }

        .hero-section .lead {
            font-size: 0.95rem !important;
            margin-bottom: 1.5rem !important;
        }

    .btn-lg {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
    }

    .sun-hero {
        max-width: 180px !important;
        margin: 1.5rem auto 0 !important;
    }

    .hero-section + .container.position-relative {
        margin-top: -40px !important;
    }

    .card {
        margin-bottom: 1.5rem !important;
    }

        .card img {
            width: 50px !important;
            height: 50px !important;
        }

        .card h5 {
            font-size: 1.1rem !important;
        }

        .card p {
            font-size: 0.85rem !important;
        }
}

/* Orta telefonlar / tabletler (576px - 768px) */
@media (max-width: 768px) {
    section {
        padding: 2.5rem 1rem !important;
    }

    .display-4 {
        font-size: 2.2rem !important;
    }

    .display-3 {
        font-size: 3.2rem !important;
    }

    .lead {
        font-size: 1.05rem !important;
    }

    .btn-lg {
        padding: 0.7rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .sun-hero {
        max-width: 220px !important;
    }

    .hero-section + .container.position-relative {
        margin-top: -50px !important;
    }

    .card-body {
        padding: 1.4rem !important;
    }
}

/* Tablet ve küçük desktop (768px - 992px) */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        padding: 4rem 1.5rem !important;
    }

    .sun-hero {
        max-width: 280px !important;
    }

    .hero-section + .container.position-relative {
        margin-top: -70px !important;
    }

    .display-4 {
        font-size: 2.8rem !important;
    }

    .display-3 {
        font-size: 3.8rem !important;
    }
}

/* İletişim bölümü – mobil için daha iyi düzen */
@media (max-width: 991px) {
    #iletisim .row {
        flex-direction: column !important;
    }

    #iletisim .hizmetler-kismi,
    #iletisim .form-karti {
        padding: 1.8rem 1.2rem !important;
        margin-bottom: 2.5rem !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    #iletisim .hizmetler-baslik,
    #iletisim .form-baslik {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    #iletisim .hizmet-listesi li {
        font-size: 1.05rem !important;
        text-align: center !important;
        padding-left: 0 !important;
        margin-bottom: 1rem !important;
    }

        #iletisim .hizmet-listesi li span {
            display: none; /* bullet'ı kaldır, merkezde olsun */
        }

    .form-control,
    textarea {
        font-size: 0.95rem !important;
    }

    .form-karti button {
        font-size: 1rem !important;
        padding: 0.8rem !important;
    }
}

/* Hakkımızda bölümü – mobil için ters çevirme ve boyutlandırma */
@media (max-width: 991px) {
    #hakkimizda .row {
        flex-direction: column-reverse !important;
    }

    #hakkimizda .col-lg-6:last-child {
        margin-bottom: 2rem !important;
    }

    #hakkimizda img {
        max-height: 280px !important;
        width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }

    #hakkimizda h2 {
        text-align: center !important;
        font-size: 2rem !important;
    }

    #hakkimizda p {
        text-align: center !important;
        font-size: 1rem !important;
    }
}



/* Genel mobil iyileştirmeler (her breakpoint'te geçerli olsun) */
@media (max-width: 991px) {
    body {
        font-size: 16px !important; /* temel font boyutu */
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    h1, h2, h3, h5 {
        line-height: 1.3 !important;
    }

    .text-center-xs {
        text-align: center !important;
    }
}
/* Mobil için ekstra ayar (küçük ekranlarda daha küçük başlasın) */
@media (max-width: 576px) {
    textarea.form-control {
        min-height: 100px;
        max-height: 250px;
        font-size: 0.95rem;
    }
}

/* Yazarken yumuşak geçiş efekti (opsiyonel ama güzel durur) */
textarea.form-control:focus {
    transition: height 0.3s ease;
}