/* --- Footer hızlı linkler modern görünüm --- */
.footer-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.footer-quicklink-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    color: #cbd5e1;
    border-radius: 22px;
    padding: 7px 18px;
    font-size: 1.01rem;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: none;
}
.footer-quicklink-btn i {
    font-size: 1.1em;
    opacity: 0.85;
}
.footer-quicklink-btn:hover, .footer-quicklink-btn:focus {
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .footer-quicklinks {
        gap: 7px;
    }
    .footer-quicklink-btn {
        font-size: 0.98rem;
        padding: 7px 12px;
    }
}

@media (max-width: 575px) {
    .footer-modern .row > div {
        margin-bottom: 18px;
    }
    .footer-modern {
        padding-left: 6px;
        padding-right: 6px;
    }
    .footer-quicklinks {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-quicklink-btn {
        justify-content: center;
        width: 100%;
        min-width: 0;
    }
}
/* Tema: sade ve modern renk paleti */
:root {
    --bs-body-bg: #f7f7f7;
    --bs-body-color: #111827; /* gri-siyah */
    --bs-primary: #6b7280; /* nötr gri */
    --bs-primary-rgb: 107, 114, 128;
    --bs-link-color: #111827;
    --bs-link-hover-color: #374151;
    --bs-dark: #0f172a; /* footer ve koyu tonlar */
}

/* Temel stil ayarları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar { box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.navbar .navbar-brand { color: #111827; }
.navbar .nav-link { color: #374151; opacity: .9; }
.navbar .nav-link:hover { color: var(--bs-primary); opacity: 1; }
.navbar .nav-link.active { opacity: 1; font-weight: 600; position: relative; color: var(--bs-primary); }
.navbar .nav-link.active::after { content:""; position:absolute; left:10px; right:10px; bottom:6px; height:2px; background: var(--bs-primary); border-radius:2px; }

.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.jumbotron {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

footer {
    margin-top: 50px;
}

.footer-modern {
    background: #0f172a; /* sade düz arka plan */
    color: #fff;
    padding: 28px 0 18px; /* daha kompakt boşluk */
    border-radius: 0; /* sade düz kenarlar */
    box-shadow: none; /* gölgeyi kaldır */
    font-size: 0.98rem;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.005em;
}
.footer-modern h5 {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 1.05rem; /* biraz daha küçük başlık */
    margin-bottom: 0.75rem;
}
.footer-brand {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px; /* daha sade */
    margin-bottom: 0.25rem;
}
.footer-desc {
    color: #cbd5e1;
    font-size: 1.02rem;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.03em;
    font-size: 1.01rem;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-address {
    color: #cbd5e1;
    font-size: 0.98rem;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}
.footer-social {
    margin-top: 10px;
}
.footer-social-link {
    display: inline-block;
    color: #cbd5e1;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-right: 8px;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-social-link:hover {
    background: #fff;
    color: #0f172a;
    transform: translateY(-2px) scale(1.08);
    text-decoration: none;
}
.footer-hr {
    border-top: 1.5px solid #334155;
    margin-top: 32px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .footer-modern {
        border-radius: 16px 16px 0 0;
        padding-top: 24px;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* İletişim formu özel stilleri */
#iletisim-formu {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
}

/* --- Hakkımızda sayfası özel stilleri --- */
.about-hero {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stat-card {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
}

.cta-gradient { background: linear-gradient(135deg, #111827, #374151); }

/* --- Hero alanı (anasayfa üst görsel) --- */
.hero-extend {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(420px, 72vh, 860px);
    border-radius: 16px;
    overflow: hidden;
}
.hero-extend .hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.55), rgba(0,0,0,0.25));
}
.hero-extend .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.hero-extend h1 {
    text-shadow: 0 3px 24px rgba(0,0,0,0.35);
}
.hero-extend .btn {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .hero-extend { min-height: 56vh; border-radius: 12px; }
    .hero-extend .hero-inner { max-width: 100%; }
}

/* --- Carousel hero ve odalar --- */
.hero-carousel .carousel-item {
    transition: transform .6s ease, opacity .6s ease; /* daha yumuşak geçiş */
}
.rooms-carousel .rooms-img {
    height: 340px;
    object-fit: cover;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.rooms-carousel .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    text-shadow: none;
}
@media (max-width: 768px){
    .rooms-carousel .rooms-img { height: 240px; }
}

/* --- Galeri stilleri --- */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}
.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.22);
    color: #fff;
    font-weight: 600;
    letter-spacing: .3px;
    opacity: 0;
    transition: opacity .25s ease;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

