:root {
    --main-color: #885f35;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: white;
}

.box-shadow {
    box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.305) !important;
}


header {
    position: sticky;
    border-bottom: 1px solid lightgray;
    background-color: white;
    top: 0;
    left: 0;
    z-index: 1112 !important;
    padding: 3px 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header .logo img {
    width: 100px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    color: black;
    transition: .2s ease-in-out;
    padding: 0 1.7rem;
    position: relative;
}

header nav a:hover::before {
    transform: scale(1);
}

header nav a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.bars {
    display: none;
}

.bars img {
    width: 29px;
}

.promo-ticker {
    position: sticky;
    top: var(--nav-height, 70px);
    z-index: 999;
    width: 100%;
    height: 36px;
    background: #2a221b;
    color: #e3c07a;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Akan yazı şeridi */
.promo-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    will-change: transform;
    animation: promo-marquee 18s linear infinite;
    font-weight: 600;
    letter-spacing: .5px;
}



.promo-track span {
    margin-right: 4rem;
    font-size: 14px;
}

/* Sonsuz akış animasyonu */
@keyframes promo-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media(max-width: 768px) {
    header {
        padding: 3px 2rem;
    }


    .info {
        display: none;
    }

    .bars {
        display: block;
    }

    header .navigation {
        position: absolute;
        top: 69px;
        left: -100%;
        display: flex;
        align-items: center;
        transition: .4s ease-in-out;
        flex-direction: column;
        height: 100vh;
        width: 50%;
        background: white;
    }

    header .navigation li {
        margin: 10px 0px;
    }
}

.aboutBig {
    font-style: italic;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    letter-spacing: 1.2px;
    font-size: 2.4rem;
}


.aboutSmall::before {
    content: '';
    width: 2px;
    border-radius: 2px;
    height: 70px;
    display: block;
    background-color: var(--main-color);
    position: relative;
    left: 50%;
    top: 0%;
    margin: 0;
    margin-bottom: 15px;
}

.aboutSmall {
    color: #797979;
    margin-top: 35px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;

}


.bg-service {
    width: 90%;
    margin: 25px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-row-gap: 20px;
    flex-wrap: wrap;
}

.bg-service .service-one {
    width: 32%;
    position: relative;
    overflow: hidden;
}

.service-one img {
    width: 100%;
    transition: 0.5s ease-in-out;
}

.service-one .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
}

.service-one .over-txt {
    padding-top: 25px !important;
    padding: 15px;
    text-align: center;
    width: 100%;
    color: #FFF;
}

.service-one .over-txt p {
    font-weight: 500;
    margin: 0;
    color: var(--main-color);
    text-transform: capitalize;
    font-size: 1.4rem;
}

.service-one .over-txt h4 {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.7rem;
}

.service-one:hover img {
    transform: scale(1.1);
}

@media(max-width: 991px) {
    .bg-service .service-one {
        width: 49%;
    }
}

@media(max-width: 576px) {
    .bg-service .service-one {
        width: 100%;
    }

    .service-one .over-txt {
        padding-top: 15px !important;
        padding: 15px;
        text-align: center;
        width: 100%;
        color: #FFF;
    }

    .service-one .over-txt p {
        font-weight: 500;
        margin: 0;
        color: var(--main-color);
        text-transform: capitalize;
        font-size: 1.4rem;
    }

    .service-one .over-txt h4 {
        font-size: 13px;
        margin-top: 10px;
        line-height: 1.4rem;
    }

}


.barista-main {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 0.5) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 96%, rgba(0, 0, 0, 1) 100%), url(pics/barista.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column !important;
    align-items: center;
    position: relative;
    justify-content: center;
    overflow-y: hidden !important;
}

.barista-main h3 {
    padding-bottom: 25px;
    color: #fff;
    text-align: center;
}

.barista-main h4 {
    padding-bottom: 25px;
    width: 70%;
    color: #fff;
    text-align: center;
}


.mini-sec {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 25px;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mini {
    margin: 0 30px;
}

.mini img {
    height: 90px;
    padding-bottom: 5px;
}

.mini p,
h4 {
    text-align: center;
}

.mini p {
    width: 70%;
    margin: auto;
}

.mini-sec h4 {
    color: var(--main-color);
    font-weight: 500;
}

@media(max-width: 576px) {
    .mini p {
        width: 100%;
    }

    .mini {
        margin: 0 10px;
    }

    .mini-sec {
        padding: 40px 0;
    }
}




.home-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 250px);
    overflow: hidden;
}

/* CAROUSEL ŞERİDİ */
.home-carousel {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* native swipe */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* scrollbar gizle */
    scrollbar-width: none;
}

.home-carousel::-webkit-scrollbar {
    display: none;
}

/* HER SLIDE */
.home-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;

    /* aynı eski gradient + görseli koruyoruz */
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.58) 0%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 1) 100%),
        var(--bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Mevcut içerik stillerin aynı kalsın */
.home-content {
    color: #fff;
    padding-left: clamp(16px, 6vw, 80px);
    max-width: 760px;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.home-content h1 {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-content p {
    font-size: 14px;
    color: #f9f9f9;
}

.home-content .home-links {
    display: flex;
    margin-top: 30px;
}

/* (senin link stillerin aynen kullanılabilir) */

.home-dots {
    position: absolute;
    bottom: 25px;
    /* alt kenardan mesafe */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.home-dots .dot.active {
    background: var(--main-color, #e3c07a);
    transform: scale(1.15);
}

.home-links a {
    text-decoration: none;
    text-transform: capitalize;
    color: #FFF;
    background: var(--main-color);
    border-radius: 5px;
    padding: 11px 12px;
    display: inline-block;
    border: 1px solid var(--main-color);
    transition: .25s ease-in-out;
    font-weight: 500;
    font-size: 0.9rem;
}

.home-links .first {
    margin-right: 20px;
}

.home-links .second a {
    background: transparent;
    border-color: #333;
}

.home-links a:hover {
    background: transparent;
    color: var(--main-color);
}

.home-links .second a:hover {
    background: var(--main-color);
    color: #FFF;
}

/* responsive başlık boyutları */
@media(max-width: 768px) {
    .home-content h1 {
        font-size: 3rem;
    }
}

@media(max-width: 576px) {
    .home-content h1 {
        font-size: 2rem;
    }

    .home-content p {
        font-size: 13px;
    }

    .home-content h1 br {
        display: none;
    }
}

@media(max-width: 350px) {
    .home-content .home-links {
        flex-direction: column;
        grid-row-gap: 15px;
    }
}

/* testimonials */


:root {
    --t-bg: #f8f6fb;
    --t-card-bg: #fff;
    --t-text: #5a5a5a;
    --t-muted: #8f8f8f;
    --t-shadow: 0 10px 30px rgba(15, 10, 30, .08);
}

:root {
    --t-bg: #f8f6fb;
    --t-card-bg: #fff;
    --t-text: #5a5a5a;
    --t-muted: #8f8f8f;
    --t-shadow: 0 10px 30px rgba(15, 10, 30, .08);
}

.testimonials-v2{
  position: relative;
  padding: 30px 0 80px;
  overflow: hidden; /* BG taşmasın */
}

/* ==== ARKA PLAN GÖRSELİ + VİGNETTE + İNCE ÇERÇEVE ==== */
.testimonials-v2 .t-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("pics/testimonial-owl.png") center/cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
}

/* İnce beyaz çerçeve: görselin içinde 24px margin ile */
.testimonials-v2 .t-bg::before{
  content:"";
  position:absolute;
  padding-bottom: 120px;
  inset: 24px;
  border: 1.5px solid rgba(255,255,255,.8);
  border-radius: 10px;
  pointer-events: none;
}

/* Yumuşak vignette (kenarlardan hafif karartma) */
.testimonials-v2 .t-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 70%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
}

/* --- BAŞLIK DIŞARIDA --- */
.t-head-outer{
  position: relative; 
  z-index: 1; 
  width: min(1200px, 92%);
  margin: 0 auto 18px;
  text-align: center;
  padding-top: 70px;        /* çizginin üst boşluğu BURADAN gelsin */
}

/* Dikey çizgi: en üste sabit */
.t-head-outer::before{
  content:"";
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  border-radius: 2px;
  background: var(--main-color);
}

/* h4'ün büyük margin'ını kaldırıyoruz */
.t-head-outer h4{
  color:#7e7e7e;
  font-weight:700;
  letter-spacing:.3px;
  margin: 0 0 6px;         /* üstte margin yok */
}

/* h2 aynı kalsın ama istersen biraz sıkılaştır */
.t-head-outer h2{
  font-style: italic;
  text-transform: uppercase;
  color: var(--main-color);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 6px 0 10px;
}

/* Kutu mor zemin KALKSIN, cam efekti gelsin */
.t-container{
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin: 0 auto;
  /* eskiden: background: var(--t-bg); box-shadow: inset ...  => kaldırıyoruz */
  background: rgba(255,255,255,.04);           /* çok hafif cam görünümü */
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);                  /* destekleyen tarayıcılarda cam efekti */
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(16px, 4vw, 28px);
}



.t-viewport {
    position: relative;
    overflow: hidden;
}

.t-track {
    display: flex;
    gap: 18px;
    transition: transform .5s ease;
    will-change: transform;
    padding: 12px 6px 24px;
}

/* Kart */
.t-card {
     background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
    flex: 0 0 calc((100% - 36px) / 3);
    background: var(--t-card-bg);
    border-radius: 14px;
    box-shadow: var(--t-shadow);
    padding: 20px 22px 18px;
    min-height: 180px;
}

.t-quote {
    font-size: 36px;
    line-height: 1;
    color: #cfcfe8;
}

.t-text {
    margin: 10px 0 16px;
    color: var(--t-text);
    font-size: .98rem;
}

.t-author {
    color: var(--t-muted);
    font-style: italic;
    font-size: .9rem;
}

.t-author b {
    color: var(--main-color);
    text-transform: uppercase;
    font-style: normal;
}

/* Nav */
.t-nav {
    position: absolute;
    top: -46px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: rgba(64, 64, 255, .12);
    color: #3d3dd8;
    font-size: 22px;
    cursor: pointer;
}

.t-prev {
    right: 46px;
}

.t-nav:hover {
    background: rgba(64, 64, 255, .18);
}

/* Dots */
.t-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.t-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
}

.t-dots button.active {
    background: var(--main-color);
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 992px) {
    .t-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .t-nav {
        top: -42px;
    }
}

@media (max-width: 640px) {
    .t-card {
        flex-basis: 100%;
    }

    .t-nav {
        top: -40px;
    }
}

.bg-shop {
    width: 90%;
    margin: 95px auto 0;
}

.bg-shop .product-header {
    font-weight: 700;
    font-style: italic;
    color: var(--main-color);
}

.bg-shop .product-header::after {
    margin-bottom: 10px;
    content: '';
    display: block;
    height: 2px;
    width: 190px;
    background-color: var(--main-color);
}

.bg-shop .shop-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
    color: black;
}

.shop-links h2 {
    text-transform: uppercase;
}

.shop-links .links {
    display: flex;
    align-items: center;
}

.shop-links .links li {
    margin-left: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.shop-links .links li:hover {
    color: var(--main-color);
}

.bg-shop .shop-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    grid-row-gap: 20px;
}

.shop-flex .shop1 {
    width: 24%;
    position: relative;
    margin: 0 0 14px 0;
    transition: all 0.3s ease;
    color: black;
}




.shop1 .shop-image {
    position: relative;
    overflow: hidden;
    border: 1px solid lightgray;
    padding: 15px;
}

.shop-image img {
    width: 100%;
    transition: .3s ease-in-out;
}



.shop-image .price {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid var(--main-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.shop-image .social {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.shop-image .social a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    border: 1px solid white;
    padding: 5px 7px;
    transition: .2s ease-in-out;
}

.shop-image .social a:hover {
    opacity: 0.7;
}

.shop-image:hover .social {
    animation: animate1 .2s ease-in-out forwards;
}

.shop-image .social {
    animation: animate2 .2s ease-in-out;
}

/* Kart */
.shop1 .shop-image {
    position: relative;
    overflow: hidden;
    /* karttan taşanı gizle */
    border: 1px solid lightgray;
    padding: 0;
    /* iç pad'i kaldırdık */
    background: #fff;
}

/* İç track: 2 görsel yan yana */
.shop-image .thumbs {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    /* mobilde swipe */
    scroll-snap-type: x mandatory;
    /* snap */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.shop-image .thumbs::-webkit-scrollbar {
    display: none;
}

.shop-image .thumbs img {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 3/4;
    /* görseller farklı oranlıysa sabit oran verelim */
    object-fit: cover;
    scroll-snap-align: start;
    transition: transform .35s ease;
}

/* Desktop’ta hover ile otomatik kaydır (şık efekt) */


/* Sepet butonu */
/* Açıklama kutusu sabit alan kaplasın */
.product-desc {
  height: 70px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.35s ease-in-out;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  pointer-events: none; /* hover alanı etkilemesin */
}

/* Hoverda sadece görünür hale gelir */
.shop1:hover .product-desc {
  opacity: 1;
  transform: translateY(0);
}



.shop-image .social a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    border: 1px solid #fff;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .45);
    transition: .2s;
}


.shop-image .social a i:hover {
    opacity: .85;
}

/* Noktalar */
.shop-image .dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    /* social’dan yüksekse 3 yapma */
    pointer-events: auto;
}

.shop-image .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.shop-image .dot.active {
    background: var(--main-color, #c89b5a);
    transform: scale(1.2);
}



@keyframes animate1 {
    0% {
        opacity: 0;
        bottom: -100px;
    }

    100% {
        opacity: 1;
        bottom: 30px;
    }
}


@keyframes animate2 {
    0% {
        opacity: 1;
        bottom: 30px;
    }

    100% {
        opacity: 0;
        bottom: -100px;
    }
}

.shop1 h2 {
    text-transform: capitalize;
    font-size: 0.9rem;
    font-weight: 600;

}


@media(max-width: 991px) {
    .shop-flex .shop1 {
        width: 49%;
    }
}

@media(max-width: 576px) {
    .shop-flex .shop1 {
        width: 100%;
    }

    .bg-shop .shop-links {
        flex-direction: column;
        justify-content: center;
    }
}


/* footer */

footer {
    border-top: 1px solid lightgray;
    background-color: #f5f5f5;
    text-align: left;
}

footer .align-left {
    text-align: left !important;
}

footer .text-warning {
    color: #494949 !important;
}

footer p,
h5,
a {
    color: black;
    text-align: left !important;
}




footer .icon {
    color: black;
    font-size: 2.2rem;
    padding: 0 6px;
    width: 100%;


}


footer .icon:hover {
    opacity: 0.7;
}



footer .tags:hover {
    cursor: pointer;
    color: rgb(22, 22, 22);
    opacity: .7;
}

footer .align-left p {
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.2rem;
}