/* assets/css/style.css */
/* Hafif, klasik, mobile-first layout – tüm site için ortak CSS */

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    background: #f5f5f7;
}

/* Linkler */

a {
    color: #0f4a7f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Görseller mobilde taşmasın */

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

/* Genel container */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= HEADER ================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #d9dde4;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

/* Logo */

.logo img {
    height: 44px;
    width: auto;
}

.logo a,
.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #0f4a7f;
    white-space: nowrap;
}

/* Navigation */

.main-nav {
    display: block;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #333;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    text-decoration: none;
    border-bottom-color: rgba(15, 74, 127, 0.35);
}

/* Aktif menü – hem eski .active hem de yeni .is-active yapısı */

.main-nav a.active,
.main-nav li.is-active > a {
    color: #0f4a7f;
    border-bottom-color: #0f4a7f;
}

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 4px;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    margin: 4px 0;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: #0f4a7f;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    padding: 6px 15px;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
}

/* ================= SECTION GENEL ================= */

.section {
    padding: 30px 0;
}

.section--strip {
    background: #ffffff;
}

.section--footer-banners {
    border-top: 1px solid #dde1ea;
    border-bottom: 1px solid #dde1ea;
}

/* Başlıklar */

.section-title {
    margin: 0 0 16px;
    font-size: 22px;
    color: #0f4a7f;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: relative;
    min-height: 260px;
}

.hero-media--istanbul {
    background-image: url("/assets/img/hero-istanbul-bosphore.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
                linear-gradient(to right, rgba(7, 28, 55, 0.86), rgba(7, 28, 55, 0.5));
    min-height: 260px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    padding: 40px 0;
    max-width: 620px;
}

.hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.88;
    margin: 0 0 6px;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
}

.hero-text {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ================= BUTTONLAR ================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #f5c14b;
    border-color: #f5c14b;
    color: #271600;
}

.btn-primary:hover {
    background: #ffd56b;
    border-color: #ffd56b;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    border-color: #0f4a7f;
    color: #0f4a7f;
}

.btn-ghost:hover {
    background: rgba(15, 74, 127, 0.04);
    text-decoration: none;
}

/* ================= GRID & CARD YAPISI ================= */

.cards-grid {
    display: grid;
    gap: 18px;
}

.cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 16px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e4ee;
}

.card-title {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f4a7f;
}

.card p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
}

/* Özel tonlar */

.card--accent:nth-child(1) {
    border-color: #d6ecff;
    background: #f4f9ff;
}

.card--accent:nth-child(2) {
    border-color: #d8e9ff;
    background: #f3f7ff;
}

.card--accent:nth-child(3) {
    border-color: #dbe8ff;
    background: #f5f7ff;
}

.card--banner {
    text-align: left;
}

/* ================= 2 KOLON LAYOUT (ANA SAYFA) ================= */

.layout {
    display: grid;
    gap: 24px;
}

.layout--2col {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    align-items: flex-start;
}

.layout-main,
.layout-side {
    min-width: 0;
}

/* ================= TOUR CARD ================= */

.tour-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 12px 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid #dde2ee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-tag {
    align-self: flex-start;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 8px;
}

.tour-image {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.tour-title {
    margin: 0 0 6px;
    font-size: 17px;
    color: #111827;
}

.tour-title a {
    color: inherit;
}

.tour-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
    flex-grow: 1;
}

.link-more {
    font-size: 13px;
    font-weight: 600;
}

/* ================= SAĞ KOLON / SIDE BOX ================= */

.side-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 14px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid #dde2ee;
    margin-bottom: 18px;
}

.side-title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0f4a7f;
}

/* Accordion – details/summary */

.accordion-item {
    border-radius: 6px;
    border: 1px solid #e2e6f0;
    background: #f9fafb;
    margin-bottom: 6px;
    overflow: hidden;
}

.accordion-item[open] {
    background: #ffffff;
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: "▾";
    float: right;
    font-size: 11px;
    color: #6b7280;
}

.accordion-item[open] summary::after {
    content: "▴";
}

.accordion-body {
    padding: 8px 10px 10px;
    font-size: 13px;
    line-height: 1.6;
}

.accordion-body .thumb {
    float: left;
    margin: 0 10px 6px 0;
    border-radius: 6px;
    overflow: hidden;
    max-width: 90px;
}

.accordion-body::after {
    content: "";
    display: block;
    clear: both;
}

/* Contact box list */

.contact-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 4px;
}

/* ================= ESKİ SAYFA YAPISI (3 KOLON) ================= */
/* Bunlar diğer iç sayfalar için, dokunmuyoruz */

.page-main {
    padding: 20px 0 40px;
}

/* Masaüstü: 3 kolon */
.layout-3cols {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 260px;
    gap: 20px;
}

/* SIDEBARS (eski) */

.sidebar-left,
.sidebar-right {
    font-size: 14px;
}

.side-block {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px 12px 10px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.side-block h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #0f4a7f;
}

.side-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.side-list li {
    margin-bottom: 4px;
}

.side-list a {
    font-size: 13px;
}

/* CONTENT ORTA KOLON (eski) */

.content {
    background: #ffffff;
    border-radius: 6px;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.content h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #0f4a7f;
}

.content .intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tour blokları / bölümler */

.tour-block {
    border-top: 1px solid #e2e5ec;
    padding-top: 15px;
    margin-top: 15px;
}

.tour-block:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.tour-block h2 {
    font-size: 18px;
    margin: 0 0 4px;
    color: #333;
}

.tour-block h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: #333;
}

.tour-block p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 6px;
}

.link-details {
    font-size: 13px;
    font-weight: 600;
}

/* Orta kolondaki contact bloğu */

.block-contact-center {
    border-top: 1px solid #e2e5ec;
    margin-top: 20px;
    padding-top: 15px;
}

.block-contact-center h2 {
    font-size: 18px;
    margin: 0 0 6px;
}

.block-contact-center p,
.block-contact-center ul {
    font-size: 14px;
}
/* ===== FOOTER RENKLİ BANNERLAR ===== */

.footer-banners {
    background: #ffffff;
    margin-top: 40px;
}

.footer-banners-inner {
    display: flex;
    flex-wrap: wrap;
}

.footer-banner {
    flex: 1 1 0;
    padding: 22px 26px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.footer-banner h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
}

.footer-banner p {
    margin: 0;
}

.footer-banner a {
    color: #fff;
    text-decoration: none;
}

.footer-banner a:hover {
    text-decoration: underline;
}

.footer-banner--superlight {
    background: #2fa8dc;
}

.footer-banner--light {
    background: #0f7fce;
}

.footer-banner--blue {
    background: #234d9b;
}

/* ===== ANA FOOTER ===== */

.footer-main {
    background: #111;
    color: #f5f5f5;
    padding: 40px 0 0;
    font-size: 14px;
}

.footer-main a {
    color: #ffffff;
    text-decoration: none;
}

.footer-main a:hover {
    text-decoration: underline;
}

.footer-main-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-col {
    flex: 1 1 0;
    min-width: 240px;
}

.footer-col h3 {
    font-size: 18px;
    margin: 0 0 12px;
    font-weight: 600;
}

.footer-text {
    margin: 0 0 14px;
}

.footer-contact,
.footer-links,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.footer-contact li {
    margin-bottom: 4px;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-social li {
    font-size: 13px;
}

/* En alt siyah bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
    padding: 14px 0;
    background: #0b0b0b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

/* Mobil uyum */
@media (max-width: 900px) {
    .footer-banners-inner {
        flex-direction: column;
    }

    .footer-main-inner {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= RESPONSIVE ================= */

/* Tablet & küçük laptop (<= 960px) */

@media (max-width: 960px) {

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0 6px;
    }

    .main-nav ul {
        justify-content: flex-start;
        gap: 10px;
    }

    .layout-3cols {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Mobilde eski layout: içerik en üstte, sonra sidebars */
    .content {
        order: 1;
    }

    .sidebar-left {
        order: 2;
    }

    .sidebar-right {
        order: 3;
    }

    .content {
        padding: 16px 14px 18px;
    }

    .side-block {
        padding: 10px 10px 8px;
    }

    /* Yeni layout 2 kolon → tek kolon */
    .layout--2col {
        grid-template-columns: minmax(0, 1fr);
    }

    .cards-grid--3,
    .cards-grid--2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 26px;
    }
}

/* Küçük telefonlar (<= 600px) */

@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-content {
        padding: 24px 0 26px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero-text {
        font-size: 14px;
    }

    .content h1 {
        font-size: 20px;
    }

    .tour-card {
        padding: 10px 10px 12px;
    }

    .accordion-body .thumb {
        max-width: 80px;
    }

    .content,
    .side-block,
    .side-box,
    .card {
        border-radius: 6px;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ============ HERO SLIDER ============ */
/* ============ HERO SLIDER ============ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 36vw;          /* oranlı yükseklik */
    max-height: 420px;     /* desktop üst limit */
    min-height: 220px;
    overflow: hidden;
    background: #000;
}

/* Radio butonları gizle */
.hero-slider input[type="radio"] {
    display: none;
}

.hero-slider-inner {
    display: flex;
    width: 100%;           /* BURASI ARTIK 100% */
    height: 100%;
    transition: transform 0.6s ease;
}

/* Her slide tam ekran genişlikte */
.hero-slide {
    flex: 0 0 100%;        /* her biri %100 genişlik */
    height: 100%;
}

/* Resim: tam doldur, ortala, kırparak göster */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Dot navigasyon */
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-slider-dots label {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid #ffffffb3;
    background: #ffffff40;
    cursor: pointer;
}

/* Hangi radio seçiliyse slider'ı kaydır */
#hero_slide_1:checked ~ .hero-slider-inner {
    transform: translateX(0%);
}

#hero_slide_2:checked ~ .hero-slider-inner {
    transform: translateX(-100%);
}

#hero_slide_3:checked ~ .hero-slider-inner {
    transform: translateX(-200%);
}

/* Aktif dot boyansın */
#hero_slide_1:checked ~ .hero-slider-dots label:nth-child(1),
#hero_slide_2:checked ~ .hero-slider-dots label:nth-child(2),
#hero_slide_3:checked ~ .hero-slider-dots label:nth-child(3) {
    background: #ffffff;
}




/* Küçük ekranlarda biraz daha alçak olsun */
@media (max-width: 600px) {
    .hero-slide img {
        max-height: 320px;
        object-fit: cover;
    }
}

/* ===== 3'lü Home Box – Bains / Dervishes / Diner  ===== */

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

/* Kutuların slider fotoğrafının üstüne hafif taşması için */
.home-highlights {
    position: relative;
    margin-top: -120px;   /* yükseklik fazla gelirse  -100 / -80 yapabilirsin */
    margin-bottom: 40px;
    z-index: 5;
}

.home-highlights-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

/* Ortak kutu stil */
.highlight-box {
    flex: 1 1 0;
    padding: 32px 34px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* Eski sitedeki renkler gibi */
.highlight-box--light {
    background: #2fa8dc;      /* Bains Turcs – açık mavi */
}

.highlight-box--blue {
    background: #0077c8;      /* Dervishes – orta mavi */
}

.highlight-box--dark {
    background: #234d9b;      /* Diner sur Bateau – koyu mavi */
}

.highlight-box h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 18px;
}

.highlight-box h2 a {
    color: #fff;
    text-decoration: none;
}

.highlight-box p {
    margin: 0 0 18px;
}

/* “Les détails” butonu */
.highlight-box .link-details {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.highlight-box .link-details:hover {
    background: #fff;
    color: #004b80;
}

/* Responsive – mobilde alt alta gelsin, overlap kalksın */
@media (max-width: 900px) {
    .home-highlights {
        margin-top: 0;
    }

    .home-highlights-inner {
        flex-direction: column;
        box-shadow: none;
    }

    .highlight-box {
        padding: 20px 18px;
    }
}

.site-footer {
    background:#020617;
    color:#d0d4df;
    margin-top:40px;
    font-size:13px;
}

.footer-top {
    background:#0f5fbf;
    background:linear-gradient(90deg,#1d9bf0,#1463c4,#0f3b8f);
    color:#fff;
}

.footer-top-inner {
    max-width:1100px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
}

.footer-top-box {
    flex:1 1 260px;
    padding:18px 22px;
    text-decoration:none;
    color:#fff;
}

.footer-top-box h3 {
    margin:0 0 6px;
    font-size:18px;
    font-weight:600;
}

.footer-top-box p {
    margin:0 0 8px;
    font-size:13px;
    line-height:1.5;
}

.footer-top-link {
    font-size:12px;
    text-decoration:underline;
}

.footer-top-box--light { background:rgba(255,255,255,0.08); }
.footer-top-box--mid   { background:rgba(0,0,0,0.05); }
.footer-top-box--dark  { background:rgba(0,0,0,0.12); }

.footer-main {
    background:#020617;
}

.footer-inner {
    max-width:1100px;
    margin:0 auto;
    padding:26px 16px 10px;
    display:flex;
    flex-wrap:wrap;
    gap:32px;
}

.footer-col {
    flex:1 1 260px;
}

.footer-col h3 {
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.04em;
    margin:0 0 8px;
}

.footer-col ul {
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li {
    margin-bottom:4px;
}

.footer-col a {
    color:#d0d4df;
    text-decoration:none;
}

.footer-col a:hover {
    text-decoration:underline;
}

.footer-bottom {
    border-top:1px solid rgba(148,163,184,0.2);
    margin-top:12px;
    padding:10px 0 14px;
    font-size:12px;
}

.footer-bottom-inner {
    max-width:1100px;
    margin:0 auto;
    padding:0 16px;
    display:flex;
    justify-content:space-between;
    gap:16px;
}

.footer-bottom a {
    color:#d0d4df;
}
