.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.drink-menu-container {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.drink-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü: 3 sütun */
    gap: 15px;
    width: 100%;
    max-width: 900px;
}

.drink-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.drink-menu-item {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.drink-info {
    display: flex;
    justify-content: space-between;
    width: 96%;
    padding: 10px;
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.drink-name {
    text-align: left;
}

.drink-price {
    text-align: right;
    color: #ff6600; /* Fiyat rengini belirgin yap */
}

.drink-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: translateX(-100%); /* Başlangıçta solda olacak */
    transition: transform 0.5s ease-in-out; /* Daha hızlı geçiş */
}

/* Overlay başlangıçta dışarıda duracak */
.overlay-left { transform: translateX(-100%); }
.overlay-right { transform: translateX(100%); }
.overlay-top { transform: translateY(-100%); }
.overlay-bottom { transform: translateY(100%); }

/* Hover anında overlay içeri girip görünür olacak */
.drink-menu-item:hover .drink-overlay {
    transform: translateX(0);
}

@media (max-width: 1024px) { /* Tablet */
    .drink-menu {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 2 sütun */
    }
}

@media (max-width: 768px) { /* Mobil */
    .drink-menu {
        grid-template-columns: repeat(2, 1fr); /* Mobil: 1 sütun */
    }
}

.breadcrumb {
    text-align: center; 
    margin: 10px 0;
    font-size: 18px;
}

.breadcrumb a {
    text-decoration: none;
    color: #fff; /* Link rengi */
    font-weight: bold;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #006143; /* Hover rengi */
}

.breadcrumb span {
    color: #555;
    margin: 0 5px;
}

.breadcrumb .active {
    color: #006143; /* Menü aktif olduğu için gri renk */
    text-decoration: none;
    pointer-events: none;
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay taşmayı engeller */
    max-width: 100vw; /* Maksimum genişliği ekran genişliğiyle sınırlı tutar */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: center;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ Sağa, sola ve ortaya uygun hizalama */
    position: fixed;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 1000;
}



.wrapper {
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    background: url('coffee-ba.png') no-repeat center center;
    background-size: cover;
    position: relative;
}


/* Genel Link Stili */
a {
    color: #000;
    text-decoration: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ Sağa, sola ve ortaya uygun hizalama */
    position: fixed;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 1000;
}

/* Instagram İkonu (Sola) */
.social-logo {
    margin-right: auto; /* En sola sabitle */
}

.social-logo img {
    height: 30px;
    width: auto;
}

.header .menu {
    display: flex;
    justify-content: center; /* Menü ortada kalacak */
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Menü öğeleri tam ortada olacak */
}


.header .menu li {
    padding: 0 15px;
}

.header .menu li a {
    display: block;
    padding: 20px 30px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.header .menu li a:hover {
    background-color: #f4f4f4;
}
.social-logo {
    margin-left: 20px; /* Sola yasla */
    font-size: 14px;
}

/* 🌟 Sağdaki Logo */
.logo {
    margin-right: 20px; /* Sağa yasla */
}

.logo img {
    height: 60px;
    width: auto;
}

/* Hero Bölümü */
.hero {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 70px;
}

.hero p {
    font-size: 35px;
    margin-bottom: 60px;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5); /* Set the background color to be transparent */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Adjust the alpha value here for the box shadow transparency */
    margin-top: 105px;
}

/* Buhar Efekti */
.steam-container {
    position: absolute;
    top: -35%; /* Buharın yukarıda görünmesini sağla */
    left: 50%;
    transform: translate(-50%, 0); /* Hem yatay hem dikey düzeltme */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Buhar alanını genişlik olarak ortalamak için */
}


.steam {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: steamRise 5s infinite linear;
}

/* İkinci Buhar Akıcı Çıkış İçin */
.steam2 {
    animation-delay: 2.5s;
}

.steam3 {
    animation-delay: 4.5s;
}

/* Kahve Çekirdeğini Aşağıya Alma */
.coffee-transition {
    position: absolute;
    top: -45%; /* Kahve çekirdeğini yukarı al */
    left: 50%; /* Ortalamak için */
    transform: translateX(-50%); /* Tam merkezde olması için */
    width: auto;
    height: auto;
    z-index: 15; /* Yeşil alanın önüne çıkmasını sağla */
}


/* Yeni Kahve Çekirdeği */
.transition-seed {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 3;
}

/* Yeni Buhar Efekti (Aşağıdaki Çekirdekle Çıkacak) */
.steam-lower {
    position: absolute;
    bottom: 100px; /* Yeşil alanın üstünden çıkacak */
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
    overflow: visible;
    z-index: 2;
}


/* Kahve Çekirdeği */
.coffee-container {
    position: absolute;
    top: calc(100vh - 180px); /* Hero'nun altına gelecek şekilde ayarla */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3; /* Yeşil alanın üstüne çıksın */
}

.coffee-seed {
    width: 350px;
    height: auto;
    position: relative;
    z-index: 6; /* En önde olmasını sağladık */
}

/* Buharın Yukarı Doğru Akıcı Süzülmesi */
@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
        transform: translateY(-100px) scale(1.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.8);
    }
}

.highlight-section {
    position: relative;
    width: 100%;
    height: 420px; /* Biraz yükselttik */
    background: #006143;
    z-index: 10; /* Yukarı kaydırarak aradaki boşluğu kapat */
}

.highlight-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.png') repeat; /* Pattern orijinal boyutta tekrar edecek */
    opacity: 1; /* Desenin belirgin olması için */
}



.about-container {
    display: flex;
    align-items: flex-start; /* Üstten hizalama */
    justify-content: space-between;
    gap: 50px;
}

/* Yazı kısmı ve resim hizalaması */
.about-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left; /* İçeriği sola hizala */
}

/* About Resmi - Yazının Hemen Altında */
.about-image {
    margin-top: 20px; /* Yazıyla arasına küçük bir boşluk bırak */
    width: 270px;
}

.about-image img {
    width: 100%;
    display: block;
}


/* Hakkımızda Bölümü */
.about-section {
    background-color: #ffffff;
    padding: 80px 10%;
}


.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

.about-text h2 span {
    color: #006143; /* Yeşil vurgulu */
    font-weight: 800;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-family: 'Poppins', sans-serif;
}


.about-main-image {
    width: 100%;
    max-width: 500px; /* Görselin maksimum genişliği */
    height: 470px;
    object-fit: cover;
    overflow: hidden;

    /* Üçgenimsi & Yuvarlatılmış Köşeler */
    border-radius: 70% 30% 30% 70% / 58% 50% 50% 42% 
    
    
}

/* Resmi İçeren Container */
.image-container {
    position: relative; /* Kuruluş rozetinin doğru konumlanması için */
    display: inline-block;
}

.kurulus-badge {
    position: absolute;
    top: 20px;  /* Resmin sol üst köşesine kaydır */
    left: 20px; /* Sol kenara biraz yaklaşsın */
    background: white;
    width: 120px;  /* Genişlik */
    height: 120px; /* Yükseklik (Genişlikle eşit olmalı) */
    border-radius: 50%; /* Tam yuvarlak yapar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    outline: 3px dashed #006143; /* Yeşil dış çizgi */
    outline-offset: 5px; /* Border'ı dışarı uzaklaştır */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Küçük Yazı */
.kurulus-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

/* Büyük Yazı */
.kurulus-year {
    font-size: 29px;
    font-weight: 900;
    color: #006143;
}


/* Ana Container */
.follow-section {
    width: 100vw; /* Tüm genişliği kaplasın */
    height: 800px; /* Sabit yükseklik */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Taşan kısımlar kesilecek */
}

/* Grid Sistemi */
.follow-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 eşit sütun */
    width: 100vw; /* Tam genişlik */
    height: 100%; /* Tam yükseklik */
    text-align: left;
}

/* Resimler */
.follow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Boşlukları kapat, taşanları kes */
}

/* Orta Bölüm (Yeşil Arka Plan) */
.follow-text {
    background-color: #006143;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    height: 100%;
    position: relative;
    text-align: left;
    align-items: flex-start;
}

/* Başlık */
.follow-text h2 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.follow-text .black-text {
    color: black;
    text-align: left;
}

.follow-text .white-text {
    color: white;
    text-align: left;
}

/* Açıklama */
.follow-text p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    text-align: left;
}

/* Yaprak Overlay */
.background-overlay {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 100%;
    max-width: 400px;
    opacity: 0.5;
}



.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 40px 0;
    color: #000;
}

.brewing-methods {
    background-color: #fff;
    padding-top: 30px;
}


.brewing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    background-color: #fff;
}

.brewing-left, .brewing-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 20%;
}

.method {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.method-right {
    flex-direction: row; /* Açıklama solda, ikon sağda olacak */
    text-align: right;
}

.method-icon {
    width: 70px;
    height: auto;
}

.method-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.method-text p {
    font-size: 0.95rem;
    color: #555;
}

.brewing-center {
    width: 60%;
    text-align: center;
}

.brewing-center img {
    max-width: 600px;
    height: auto;
}

@media (max-width: 768px) {
    .brewing-container {
        flex-direction: column;
        align-items: center;
    }

    .brewing-left, .brewing-right, .brewing-center {
        width: 100%;
    }

    .method {
        justify-content: center;
    }
}

/* Footer Genel Stil */
.coffee-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: left;
    font-family: 'Arial', sans-serif;
    position: relative;
    background: url('footer.jpg') no-repeat center center/cover;
}

/* Overlay (Arka Plan Karartma) */
.coffee-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Footer İçerik Alanı */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer Bölümleri */
.footer-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #006143;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.footer-title::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #006143;
    margin-top: 5px;
    transition: width 0.9s ease-in-out; /* Daha yumuşak bir geçiş efekti */
}

/* Sayfa aşağı kaydıkça çizgi uzayacak */
.footer-title.scrolled::after {
    width: 220px; /* Çizgi tam genişlik */
}


/* Logo ve Açıklama */
.footer-logo {
    width: 120px;
    margin: 10px 0;
    display: block;
}

/* Sosyal Medya */
.social-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #006143;
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #006143;
}

/* Alt Bilgi */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 13px;
    border-top: 1px solid #444;
    position: relative;
    z-index: 1;
}

/* 🌟 Masaüstü için Menü (Mobil Menüden Ayrı) */
@media (min-width: 1024px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 400px; /* Menü genişliği */
        height: 100vh;
        background: #151616;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    .menu.active {
        right: 0;
    }

    /* Menü içeriğini hizalama */
    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menu li {
        width: 100%;
        text-align: left;
        padding: 12px 0;
    }

    .menu li a {
        display: block;
        font-size: 22px;
        font-weight: bold;
        color: black;
        text-decoration: none;
        transition: color 0.3s;
    }

    .menu li a.default-green {
        color: #006143 !important;
    }

    .menu li a.active {
        color: #006143;
    }

    .menu li a:hover {
        color: #006143;
    }

    /* Noktaları kaldır */
    .menu ul {
        list-style: none;
    }

    /* 🌟 Logo Küçültme ve Hizalama */
    .menu .menu-logo {
        width: 100px;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .menu .menu-logo img {
        width: 100%;
        height: auto;
    }

    /* Kapat Butonu */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        cursor: pointer;
        color: black;
        transition: color 0.3s;
    }

    .menu-close:hover {
        color: #006143;
    }
}

/* 📌 Mobil Görünüm İçin */
@media (max-width: 768px) {
    .brewing-container {
        flex-direction: column;
        align-items: center;
    }

    .brewing-left,
    .brewing-right {
        width: 100%;
        text-align: center;
    }

    .method {
        flex-direction: column;
        text-align: center;
    }

    .method-right {
        flex-direction: column-reverse;
    }
}


/* 📌 Mobil Görünüm */
@media (max-width: 768px) {
    /* Header */
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        height: 60px;
        padding: 10px 20px;
        background: white;
        z-index: 1000;
    }

    /* Instagram ikonunu solda tut */
    .social-logo {
        font-size: 14px;
    }

    /* 🌟 Menü Kapalı Durumda (Sağdan Dışarıda Başlangıç) */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Sola hizala */
        justify-content: flex-start;
        list-style: none;
        padding: 40px 20px; /* Soldan iç boşluk */
        margin: 0;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }


    /* 🌟 Menü Açıldığında */
    .menu.active {
        right: 0; /* Ekrana girsin */
    }

    .menu li {
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }

    .menu li a {
        display: block;
        font-size: 22px; /* Yazı büyüklüğü artırıldı */
        font-weight: bold;
        color: black;
        text-decoration: none;
        transition: color 0.3s;
        text-align: left; /* Sola yasla */
    }
    

    /* 🌟 Ana Sayfa ve Menü Her Zaman Yeşil */
.menu li a.default-green {
    color: #006143 !important;
}

/* 🌟 Logo İçin Düzenleme */
.menu .menu-logo {
    width: 100px; /* Logo boyutu */
    margin-top: 20px; /* Üstten boşluk ekledik */
    margin-left: 15px; /* Soldan hizalama */
}

.menu .menu-logo img {
    width: 100%;
    height: auto;
}

.menu li a.active {
    color: #006143;
}

.menu li a:hover {
    color: #006143;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
}

.menu-close:hover {
    color: #006143;
}

    /* 🌟 Hamburger Menü Butonu */
    .menu-icon {
        right: 25px;
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;  /* Menü kapandıktan sonra tıklanabilir olsun */
    }

    /* Çizgiler */
    .menu-icon span {
        display: block;
        width: 30px;
        height: 3px;
        background: black;
        position: absolute;
        transition: all 0.3s ease-in-out;
    }

    /* İlk çizgi */
    .menu-icon span:nth-child(1) {
        top: 8px;
    }

    /* Ortadaki çizgi */
    .menu-icon span:nth-child(2) {
        top: 15px;
    }

    /* Alt çizgi */
    .menu-icon span:nth-child(3) {
        top: 22px;
    }

    /* 📌 Menü Açıldığında X Görünümü */
    .menu-icon.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 15px;
    
    }

    .menu-icon.open span:nth-child(2) {
        opacity: 0; /* Orta çizgiyi gizle */
    }

    .menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 15px;

    }

    /* Logo Ortalanmış */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 900;
    }

    .logo img {
        
        height: 50px;
        width: auto;
    }
}


/* Masaüstü için şık ve modern menü */
.desktop-menu {
    background: none; /* Hafif transparan arka plan */
    padding: 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 5px;
    left: 0;
    z-index: 1000;
}

.desktop-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-menu li {
    margin: 0 20px;
}

.desktop-menu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.desktop-menu a:hover {
    color: #006143; /* Altın sarısı hover efekti */
}

/* Mobilde masaüstü menüyü gizle */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
}

.mobile-menu .menu-logo img {
    width: 120px; /* Logo boyutu */
    height: auto;
    margin-left: 10px; /* Sola yaslamak için */
}
