
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


:root {
    /* Marka: sage — kahve + doğallık, tek bir “tablo kahve” hissi vermez */
    --primary-color: #3a5246;
    --primary-color-low: rgba(58, 82, 70, 0.45);
    --primary-color-dark: #28362e;

    /* Nötr ikincil — soğuk gri, çikolata/karamel değil */
    --secondary-color: #8a9199;
    --secondary-color-low: rgba(138, 145, 153, 0.45);
    --secondary-color-dark: #5d656e;

    /* Yüzey & bölmeler */
    --tertiary-color: #e9e5dd;
    --tertiary-color-low: rgba(233, 229, 221, 0.6);
    --tertiary-color-dark: #d4cec3;

    /* Arka plan — landing / marka beji */
    --bg-color: #d0bdaf;
    --bg-color-low: rgba(208, 189, 175, 0.65);
    --bg-color-dark: #b8a896;

    /* Aşağı doğru açılan bölümler (#d0bdaf ailesi) */
    --page-surface-1: #c9b8a8;
    --page-surface-2: #d1c0b0;
    --page-surface-3: #dac9bb;
    --page-surface-4: #e3d4c6;
    --page-surface-5: #eadfd4;
    --page-surface-6: #f0e8df;
    --page-surface-7: #f7f2eb;
    --page-hero-fill-video: #d0bdaf;
    /* Hakkımızda bölümü + video alanı (tek ton) */
    --section-about-bg: #dbbda4;

    /* Metin — espresso/kömür (kırmızımsı kahve değil) */
    --text-dark: #1c1a18;
    --text-dark-low: rgba(28, 26, 24, 0.68);
    --text-dark-dark: #0f0e0d;

    --text-light: #faf8f4;
    --text-light-low: rgba(250, 248, 244, 0.78);
    --text-light-dark: #e8e4dd;

    /* CTA: koyu yeşil-gri, primary ile aynı aile */
    --button-color: #2c3f35;
    --button-color-low: rgba(44, 63, 53, 0.5);
    --button-color-dark: #1e2b25;

    /* İnce vurgu: madeni/bronz — sadece hover, border, ikon */
    --accent: #8f7349;
    --accent-low: rgba(143, 115, 73, 0.35);

    --card-bg: #fffcf6;
    --card-bg-low: #f5f0e8;
    --smoothline-color: var(--tertiary-color);

    /* Kahve markası — landing / navbar */
    --qualis-espresso: #3e2723;
    --qualis-espresso-soft: rgba(62, 39, 35, 0.72);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

/* Lenis — resmi eşlik stilleri (smooth scroll + ScrollTrigger uyumu) */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--page-surface-7);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


/* Ana sayfa: kaydırma + özel scrollbar (yalnızca viewport; global ::-webkit-scrollbar kaldırıldı) */
html {
    scroll-behavior: auto;
    scrollbar-color: rgba(62, 39, 35, 0.55) var(--page-surface-5);
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--page-surface-5);
    border-radius: 999px;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(62, 39, 35, 0.45), rgba(62, 39, 35, 0.78));
    border-radius: 999px;
    border: 2px solid var(--page-surface-5);
    background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(62, 39, 35, 0.65), var(--qualis-espresso));
    border: 2px solid var(--page-surface-5);
    background-clip: padding-box;
}



body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Varsayılan yön: sütun. Aksi (ör. ızgara) ilgili sınıfta .landing-hero / .home-menu-banner gibi belirtilir. */
section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}
