﻿/* ============================================================
   MOF Dokuma Tekstil - Yumusak acik tema
   Renk paleti: krem, bej, yumusak taupe
   ============================================================ */

:root {
    --ink: #faf8f5;
    --ink-soft: #f2ede6;
    --ink-card: #ffffff;
    --gold: #7a6048;
    --gold-soft: #9a7d62;
    --cream: #1f1b17;
    --cream-dim: #4a433c;
    --line: rgba(122, 96, 72, .32);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Sabit menu yuksekligi kadar boslukla kaydir */
    scroll-padding-top: 84px;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.15;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color .25s ease;
}

a:hover {
    color: #5c4835;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Ortak yardimcilar ---------- */

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.eyebrow::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--gold);
    margin-left: 14px;
    vertical-align: middle;
    opacity: .85;
}

.section {
    padding: 7rem 1.5rem;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-inner.center {
    text-align: center;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-head h2,
.about-text h2,
.contact-text h2,
.insta-cta h2 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--cream-dim);
    font-weight: 400;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ---------- Butonlar ---------- */

.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2.1rem;
    font-family: var(--sans);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all .3s ease;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #fff;
    font-weight: 500;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), #8f7a62);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(168, 146, 120, .28);
}

.btn-gold.full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    border: 1px solid rgba(122, 96, 72, .45);
    color: var(--cream);
    background: rgba(255, 255, 255, .55);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #fff;
}

/* ---------- Ust menu ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(58, 53, 48, .06);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--cream);
}

/* Logo gorseli - yuvarlak rozet gorunumu */
.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
    /* Beyaz zeminli logoyu koyu temaya yumusak gecisle uyumla */
    box-shadow: 0 0 0 3px rgba(201, 163, 94, .12);
    background: #fff;
}

.brand-logo-lg {
    width: 64px;
    height: 64px;
}

.brand-text {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.brand-text em {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream-dim);
    font-size: .82rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: .55rem 1.3rem;
    font-size: .75rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

/* Dil secici - TR | EN */
.lang-switch {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    letter-spacing: .18em;
    color: var(--line);
}

.lang-switch a {
    color: var(--cream-dim);
    padding: .2rem .15rem;
}

.lang-switch a:hover {
    color: var(--cream);
}

.lang-switch a.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 1.5rem 5rem;
    background: var(--ink);
}

/* Gercek kumas fotografi - hafif ortu ile okunakli metin */
.hero-photo {
    position: absolute;
    inset: 0;
    background: url('imgs/kuas2.jpeg') center 35% / cover no-repeat;
    opacity: .72;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 50% 35%, rgba(255, 255, 255, .08), rgba(250, 248, 245, .72) 88%),
        linear-gradient(180deg, rgba(255, 255, 255, .35), transparent 40%, rgba(250, 248, 245, .82));
}

/* CSS ile dokuma kumasi efekti */
.hero-weave {
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        repeating-linear-gradient(0deg, transparent 0 5px, rgba(201, 163, 94, .05) 5px 6px),
        repeating-linear-gradient(90deg, transparent 0 5px, rgba(201, 163, 94, .05) 5px 6px);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}

.hero-content {
    position: relative;
    max-width: 780px;
    animation: rise .9s ease both;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero .lead {
    max-width: 560px;
    margin: 0 auto 2.6rem;
    color: var(--cream-dim);
    font-size: 1.08rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Kaydirma isareti */
.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    background: var(--line);
    overflow: hidden;
}

.hero-scroll span {
    display: block;
    width: 100%;
    height: 18px;
    background: var(--gold);
    animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%   { transform: translateY(-20px); }
    70%  { transform: translateY(60px); }
    100% { transform: translateY(60px); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Hakkimizda ---------- */

.about {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-visual {
    position: relative;
    min-height: 520px;
}

/* Katmanli fotograf kartlari */
.photo-card {
    position: absolute;
    border-radius: 4px;
    border: 1px solid var(--line);
    object-fit: cover;
}

/* Buyuk kart - tezgahtaki usta */
.photo-a {
    inset: 0 18% 14% 0;
    width: 82%;
    height: 86%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

/* Kucuk kart - desenli kumaslar */
.photo-b {
    right: 0;
    bottom: 0;
    width: 52%;
    height: 56%;
    box-shadow: 0 24px 50px rgba(58, 53, 48, .15);
    outline: 6px solid var(--ink-soft);
}

/* Misyon / vizyon kartlari */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0 2.2rem;
}

.mission-card {
    padding: 1.5rem 1.6rem;
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(58, 53, 48, .05);
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
    color: var(--gold);
}

.mission-card p {
    color: var(--cream-dim);
    font-size: .94rem;
    font-weight: 400;
}

.about-text p {
    color: var(--cream-dim);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.stats {
    display: flex;
    gap: 2.8rem;
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold);
}

.stat span {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

/* ---------- Koleksiyon ---------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

/* 5 urun kartinda son satir ortalanir */
.product-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

.product-card {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 146, 120, .55);
    box-shadow: 0 24px 50px rgba(58, 53, 48, .1);
}

/* Urun fotografi - hover ile zarif yakinlasma */
.product-visual {
    height: 240px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
    filter: saturate(.92) brightness(.94);
}

.product-card:hover .product-visual img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
}

.product-info {
    padding: 1.6rem 1.7rem 1.9rem;
}

.product-info h3 {
    font-size: 1.45rem;
    margin-bottom: .5rem;
}

.product-info p {
    color: var(--cream-dim);
    font-size: .94rem;
    margin-bottom: 1.1rem;
    font-weight: 400;
}

.product-tag {
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--line);
    padding: .35rem .9rem;
    border-radius: 20px;
}

/* ---------- Uretim adimlari ---------- */

.process {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.step {
    padding: 2rem 1.6rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--ink-card);
    box-shadow: 0 8px 24px rgba(31, 27, 23, .05);
    transition: border-color .3s ease, transform .3s ease;
}

.step:hover {
    border-color: rgba(122, 96, 72, .45);
    transform: translateY(-4px);
}

.step-no {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--gold);
    opacity: 1;
}

.step h3 {
    font-size: 1.3rem;
    margin: .8rem 0 .5rem;
}

.step p {
    color: var(--cream-dim);
    font-size: .92rem;
    font-weight: 400;
}

/* ---------- Atolye galerisi ---------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--line);
    margin: 0;
}

/* Genis kareler iki sutun kaplar */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
    filter: saturate(.9) brightness(.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}

/* Alt kenarda zarif baslik seridi */
.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.2rem 1.2rem .9rem;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(180deg, transparent, rgba(20, 17, 12, .85));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Proje / otel tekstili ---------- */

.project {
    background:
        radial-gradient(ellipse 60% 70% at 80% 20%, rgba(201, 163, 94, .08), transparent 65%),
        var(--ink);
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    max-width: 920px;
    margin: 0 auto;
}

.proj-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.8rem 1.9rem;
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: border-color .3s ease, transform .3s ease;
}

.proj-item:hover {
    border-color: rgba(201, 163, 94, .5);
    transform: translateY(-4px);
}

/* Altin elmas isareti */
.proj-mark {
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    margin-top: .55rem;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    transform: rotate(45deg);
}

/* Tek sayida kart oldugunda sonuncusu tam genislik kaplar */
.proj-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.proj-item h3 {
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.proj-item p {
    color: var(--cream-dim);
    font-size: .93rem;
}

.proj-cta {
    text-align: center;
    margin-top: 2.8rem;
}

/* Otel odasi ornek galerisi */
.proj-otel {
    max-width: 1040px;
    margin: 3.2rem auto 0;
    padding-top: 2.4rem;
    border-top: 1px solid var(--line);
}

.proj-otel-title {
    font-size: 1.55rem;
    margin-bottom: .55rem;
    color: var(--cream);
}

.proj-otel-desc {
    color: var(--cream-dim);
    font-size: .95rem;
    margin-bottom: 1.6rem;
    max-width: 640px;
}

.proj-otel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1.1rem;
}

.proj-otel-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--line);
    margin: 0;
}

.proj-otel-item.wide {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 280px;
}

.proj-otel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
    filter: saturate(.92) brightness(.88);
}

.proj-otel-item:hover img {
    transform: scale(1.04);
    filter: saturate(1) brightness(1);
}

.proj-otel-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .75rem 1rem;
    background: linear-gradient(transparent, rgba(12, 10, 8, .82));
    color: var(--cream);
    font-size: .78rem;
    letter-spacing: .05em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
}

.proj-otel-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Online magaza (Mof Home Collection) ---------- */

/* Krem bant: perakende markasini kurumsal koyu temadan zarifce ayirir */
.shop {
    background: #ebe5dc;
    color: #2a2317;
}

.shop .eyebrow {
    color: #a8813f;
}

.shop .eyebrow::after {
    background: #a8813f;
}

.shop h2 {
    color: #1d1812;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 1rem;
}

.shop-text p {
    color: #5d5343;
    max-width: 460px;
    margin-bottom: 1.8rem;
}

.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2.2rem;
}

.shop-tag {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #6b5c3e;
    border: 1px solid rgba(107, 92, 62, .35);
    padding: .4rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .5);
}

/* Krem zemin uzerinde koyu buton */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2.1rem;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    background: var(--ink);
    color: var(--cream);
    transition: all .3s ease;
}

.btn-dark:hover {
    background: #2a2317;
    color: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(29, 24, 18, .3);
}

.shop-visual {
    position: relative;
}

.shop-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(29, 24, 18, .25);
}

/* Kose rozeti - magaza adresi */
.shop-badge {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    background: rgba(20, 17, 12, .85);
    color: var(--gold-soft);
    font-size: .75rem;
    letter-spacing: .14em;
    padding: .5rem 1.1rem;
    border-radius: 2px;
    backdrop-filter: blur(6px);
}

/* ---------- Donen Instagram seridi ---------- */

.insta-strip {
    max-width: 1180px;
    margin: 4.5rem auto 0;
}

.insta-strip-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.4rem;
    color: #6b5c3e;
}

.insta-strip-head a {
    font-size: .82rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #6b5c3e;
    font-weight: 500;
}

.insta-strip-head a:hover {
    color: #1d1812;
}

/* Kenarlardan yumusak gecisli kayan alan */
.insta-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.insta-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: seritKaydir 90s linear infinite;
}

/* Uzerine gelince akis durur */
.insta-marquee:hover .insta-track {
    animation-play-state: paused;
}

@keyframes seritKaydir {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Hareket azaltma tercihinde animasyon kapanir */
@media (prefers-reduced-motion: reduce) {
    .insta-track {
        animation: none;
    }
}

/* Polaroid havasinda kart */
.insta-card {
    display: block;
    width: 200px;
    background: #fff;
    padding: 10px 10px 12px;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(29, 24, 18, .14);
    transition: transform .35s ease, box-shadow .35s ease;
}

.insta-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 18px 36px rgba(29, 24, 18, .22);
}

.insta-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 2px;
}

.insta-card-cap {
    display: block;
    margin-top: .6rem;
    font-size: .74rem;
    letter-spacing: .06em;
    color: #5d5343;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Instagram cagri ---------- */

.insta-cta {
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 163, 94, .1), transparent 70%),
        var(--ink);
}

.insta-cta p {
    color: var(--cream-dim);
    max-width: 480px;
    margin: 0 auto 2.2rem;
}

/* ---------- Iletisim ---------- */

.contact {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
}

.contact-text p {
    color: var(--cream-dim);
    margin-bottom: 2rem;
    max-width: 420px;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.contact-list li {
    display: flex;
    align-items: baseline;
    gap: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
}

.contact-label {
    min-width: 92px;
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-card {
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2.4rem;
    box-shadow: 0 20px 40px rgba(58, 53, 48, .08);
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: .9rem 1.1rem;
    color: var(--cream);
    font-family: var(--sans);
    font-size: .95rem;
    transition: border-color .25s ease;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(74, 67, 60, .55);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* ---------- Alt bilgi ---------- */

.site-footer {
    background: #ebe5dc;
    border-top: 1px solid var(--line);
    padding: 4rem 1.5rem 0;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-top: 1rem;
}

.footer-brand small {
    color: var(--cream-dim);
}

.footer-links {
    display: grid;
    gap: .6rem;
    align-content: start;
}

.footer-links h4 {
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.footer-links a {
    color: var(--cream-dim);
    font-size: .95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: .8rem;
    color: var(--cream-dim);
}

/* ---------- Blazor hata cubugu ---------- */

#blazor-error-ui {
    background: #3a2c14;
    color: var(--cream);
    bottom: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .4);
    display: none;
    left: 0;
    padding: .8rem 1.4rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: .9rem;
    top: .6rem;
}

/* ---------- Duyarli tasarim ---------- */

@media (max-width: 980px) {
    .split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        min-height: 400px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .proj-grid {
        grid-template-columns: 1fr;
    }

    .proj-otel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 4.5rem 1.2rem;
    }

    .card-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .proj-otel-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .proj-otel-item.wide {
        min-height: 220px;
    }

    .nav-cta {
        display: none;
    }

    .shop-visual img {
        height: 280px;
    }

    .stats {
        gap: 1.6rem;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 92vh;
    }
}
