/* =========================================================
   Baraka Houses Çıralı — sıfırdan modern tasarım
   Palet: kiremit (#c0531a) · teal (#13929e) · yeşil (#74bf6a)
   ========================================================= */

:root {
    --rust:        #c0531a;
    --rust-dark:   #a8461410;
    --teal:        #13929e;
    --teal-dark:   #0d7681;
    --teal-light:  #57b3bb;
    --green:       #74bf6a;
    --green-dark:  #5aa852;
    --sand:        #f6f1e8;
    --ink:         #25333a;
    --muted:       #6a7a80;
    --white:       #ffffff;
    --radius:      16px;
    --shadow:      0 18px 40px -22px rgba(13, 60, 66, .45);
    --maxw:        1180px;
    --ease:        .35s cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.18; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .2px;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    cursor: pointer;
    border: 0;
}
.btn--primary { background: var(--rust); color: #fff; }
.btn--primary:hover { background: #d35f24; transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(192, 83, 26, .7); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--rust); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; color: var(--teal-dark); }

/* ---------- Üst şerit ---------- */
.topbar { background: var(--rust); color: #fff; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__contact a { margin-right: 22px; opacity: .95; }
.topbar__contact a:hover, .topbar__social a:hover { opacity: 1; text-decoration: underline; }
.topbar__social a { margin-left: 14px; font-weight: 700; }

/* ---------- Navigasyon ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); box-shadow: 0 6px 22px -18px rgba(0,0,0,.5); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__mark {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.7rem; letter-spacing: 1px;
    background: linear-gradient(90deg, var(--teal) 0 25%, var(--green) 25% 50%, var(--rust) 50% 75%, var(--teal-dark) 75% 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__sub { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: 6px; color: var(--teal); text-align: center; }

.nav__menu { display: flex; align-items: center; gap: 24px; }
.nav__menu a { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .9rem; color: var(--ink); position: relative; padding: 4px 0; transition: color var(--ease); }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--teal); }
.nav__menu a.is-active::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--rust); }
.nav__cta { background: var(--rust); color: #fff !important; padding: 9px 22px !important; border-radius: 999px; }
.nav__cta:hover { background: #d35f24; }
.nav__cta::after { display: none !important; }

.nav__toggle, .nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; text-align: center; display: grid; place-items: center; min-height: 78vh; padding: 90px 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
        linear-gradient(180deg, rgba(13,118,129,.55), rgba(13,118,129,.78)),
        radial-gradient(120% 120% at 70% 10%, var(--teal-light), var(--teal-dark) 70%); z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 820px; padding-inline: 22px; }
.hero__eyebrow { font-family: 'Poppins', sans-serif; letter-spacing: 4px; text-transform: uppercase; font-size: .8rem; opacity: .9; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 18px; }
.hero p { font-size: 1.1rem; opacity: .95; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* alternatif kısa hero (iç sayfalar) */
.pagehead { position: relative; color: #fff; text-align: center; padding: 80px 0; overflow: hidden; }
.pagehead::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--teal), var(--teal-dark)); z-index: 0; }
.pagehead__inner { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.pagehead .crumbs { opacity: .9; font-size: .9rem; margin-top: 8px; }
.pagehead .crumbs a:hover { text-decoration: underline; }

/* ---------- Genel bölüm ---------- */
.section { padding: 80px 0; }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal); color: #fff; }
.section--green { background: var(--green); color: #fff; }

.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__eyebrow { font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; color: var(--rust); font-weight: 600; }
.section--teal .section__eyebrow, .section--green .section__eyebrow { color: rgba(255,255,255,.85); }
.section__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 10px 0 14px; }
.section__head p { color: var(--muted); }
.section--teal .section__head p, .section--green .section__head p { color: rgba(255,255,255,.92); }

/* ---------- İçerik + görsel ikili ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.split--rev .split__media { order: 2; }

/* ---------- Özellik kartları (3 vurgu) ---------- */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fcard { background: #fff; border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: transform var(--ease); border-top: 4px solid var(--teal); }
.fcard:nth-child(2) { border-top-color: var(--green); }
.fcard:nth-child(3) { border-top-color: var(--rust); }
.fcard:hover { transform: translateY(-6px); }
.fcard__icon { font-size: 2.2rem; margin-bottom: 14px; }
.fcard h3 { font-size: 1.2rem; margin-bottom: 10px; }
.fcard p { color: var(--muted); font-size: .95rem; }

/* ---------- İmkan / hizmet listeleri ---------- */
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px 28px; }
.amenities li { list-style: none; display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,.12); border-radius: 12px; font-weight: 500; }
.section--sand .amenities li { background: #fff; box-shadow: 0 8px 22px -18px rgba(0,0,0,.4); }
.amenities .ico { font-size: 1.25rem; flex: none; }

/* ---------- Bungalov kartları ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.bcard { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform var(--ease); }
.bcard:hover { transform: translateY(-6px); }
.bcard__media { aspect-ratio: 3/2; background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); position: relative; }
.bcard__media img { width: 100%; height: 100%; object-fit: cover; }
.bcard__badge { position: absolute; top: 14px; left: 14px; background: var(--rust); color: #fff; font-size: .78rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
.bcard__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bcard__body h3 { font-size: 1.25rem; }
.bcard__body p { color: var(--muted); font-size: .94rem; }
.bcard__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.bcard__tags span { font-size: .78rem; background: var(--sand); color: var(--teal-dark); padding: 5px 12px; border-radius: 999px; font-weight: 500; }

/* ---------- Gezi rehberi kartları ---------- */
.guide { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.gcard { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 5px solid var(--green); transition: transform var(--ease); }
.gcard:hover { transform: translateY(-5px); }
.gcard h3 { color: var(--teal-dark); margin-bottom: 10px; font-size: 1.18rem; }
.gcard p { color: var(--muted); font-size: .95rem; }

/* ---------- Yorumlar ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.review { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; }
.review::before { content: "“"; position: absolute; top: 6px; right: 22px; font-family: Georgia, serif; font-size: 4rem; color: var(--green); opacity: .35; line-height: 1; }
.review__stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }
.review h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--teal-dark); }
.review p { color: var(--muted); font-size: .95rem; }

/* ---------- Ulaşım adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 26px; width: 44px; height: 44px; display: grid; place-items: center; background: var(--rust); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; border-radius: 50%; }
.step h3 { margin: 14px 0 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- 360° Sanal Tur ---------- */
.tour-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--teal-dark); }
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 560px) { .tour-frame { aspect-ratio: 4/5; } }

/* tam genişlik varyant — height sabit, container'dan bağımsız */
.tour-frame--full { width: 100%; aspect-ratio: auto; height: clamp(420px, 70vh, 663px); border-radius: 0; box-shadow: none; }
@media (max-width: 560px) { .tour-frame--full { aspect-ratio: auto; height: 70vh; } }

/* ---------- Harita ---------- */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--sand); border-radius: var(--radius); margin-bottom: 16px; }
.info-card .ico { font-size: 1.6rem; flex: none; }
.info-card h4 { margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: .95rem; }
.info-card a:hover { color: var(--teal); }

.form { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid #e2ded4; border-radius: 12px;
    font-family: inherit; font-size: .95rem; background: var(--sand); transition: border-color var(--ease), background var(--ease);
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--teal); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-size: .95rem; }
.alert--ok { background: #e7f6ec; color: #1d7a3e; border: 1px solid #bce4c8; }
.alert--err { background: #fdecec; color: #b3261e; border: 1px solid #f3c4c1; }

/* ---------- Çağrı bandı ---------- */
.callout { background: var(--rust); color: #fff; }
.callout__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 44px 0; flex-wrap: wrap; }
.callout p { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 600; max-width: 720px; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-dark); color: rgba(255,255,255,.85); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 60px 0 40px; }
.footer__col h4 { color: #fff; margin-bottom: 18px; font-size: 1.05rem; }
.logo--footer .logo__sub { color: var(--green); }
.footer__about { margin-top: 14px; font-size: .95rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 9px; }
.footer__links a:hover, .footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__map { display: inline-block; margin-top: 12px; color: var(--green); font-weight: 600; }
.footer__bar { background: var(--rust); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; color: #fff; font-size: .85rem; }
.footer__social a { margin-left: 14px; font-weight: 700; }

/* ---------- Yukarı çık ---------- */
.totop { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--rust); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity var(--ease), transform var(--ease); z-index: 40; }
.totop.show { opacity: 1; pointer-events: auto; }
.totop:hover { transform: translateY(-4px); }

/* ---------- Görsel yer tutucular (gerçek foto eklenince kaldırılır) ---------- */
.ph { display: grid; place-items: center; color: rgba(255,255,255,.9); font-family: 'Poppins', sans-serif; font-weight: 600; text-align: center; gap: 6px; }
.ph .ph__icon { font-size: 2.6rem; }
.ph .ph__txt { font-size: .8rem; letter-spacing: 1px; opacity: .9; }
.ph--1 { background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); }
.ph--2 { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.ph--3 { background: linear-gradient(135deg, #e6843f, var(--rust)); }
.ph--4 { background: linear-gradient(135deg, var(--teal), var(--green)); }
.split__media.ph, .bcard__media.ph { width: 100%; height: 100%; }

/* ---------- Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.placeholder-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .split, .contact-grid { grid-template-columns: 1fr; }
    .split--rev .split__media { order: 0; }
    .feature-cards { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .form .row { grid-template-columns: 1fr; }

    .nav__burger { display: block; font-size: 1.6rem; cursor: pointer; color: var(--teal-dark); }
    .nav__menu { position: fixed; inset: 0 0 0 30%; background: #fff; flex-direction: column; align-items: flex-start; padding: 90px 30px; gap: 18px; transform: translateX(100%); transition: transform var(--ease); box-shadow: var(--shadow); }
    .nav__toggle:checked ~ .nav__menu { transform: translateX(0); }
    .nav__menu a { font-size: 1.05rem; }
}
@media (max-width: 560px) {
    .topbar__contact a { margin-right: 12px; font-size: .78rem; }
    .callout__inner { flex-direction: column; text-align: center; }
    .hero { min-height: 68vh; }
}
