html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #222;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #b85c38;
}
.lang-select button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 1rem;
    cursor: pointer;
}
main {
    min-height: 60vh;
    padding: 40px 0 0 0;
    flex: 1 0 auto;
}
footer {
    background: #111;
    color: #fff;
    padding: 40px 0 0 0;
    flex-shrink: 0;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px 30px 40px;
}
.footer-content h3, .footer-content h4 {
    margin-top: 0;
}
.footer-content ul {
    list-style: none;
    padding: 0;
}
.footer-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}
.footer-content ul li a:hover {
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 0.95rem;
    background: #222;
}
.social a {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}
.social a:hover {
    color: #b85c38;
}

/* Hero Alanı */
.hero {
    position: relative;
    background: linear-gradient(120deg, #e53935 0%, #e35d5b 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}
.anim-text {
    display: inline-block;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.02,.67,1.01) both;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.refreshers-scroll {
    margin: 30px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.7;
    animation: scrollText 12s linear infinite;
}
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hero-drinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.hero-drinks img {
    width: 140px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #fff;
    transition: transform 0.3s;
}
.hero-drinks img:hover {
    transform: scale(1.07) rotate(-2deg);
}

/* Pattern Grid Alanı */
.pattern-section {
    background: #fff;
    padding: 60px 0 30px 0;
}
.pattern-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
}
.underline {
    border-bottom: 3px solid #b85c38;
    padding-bottom: 2px;
}
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.pattern-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
}
.pattern-card.large {
    grid-row: span 2;
    min-height: 380px;
}
.pattern-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card-title {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.card-info {
    padding: 24px 18px;
    font-size: 1.1rem;
    color: #333;
}
.franchise-btn {
    margin-top: 16px;
    background: #6d4c41;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.franchise-btn:hover {
    background: #b85c38;
}
.matcha-title {
    font-size: 2.1rem;
    font-weight: bold;
    color: #1b5e20;
}
.season {
    background: #b2dfdb;
    color: #222;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 2px 10px;
    margin-left: 8px;
}

/* Menü Grid Alanı */
.menu-section {
    background: #fff;
    padding: 40px 0 60px 0;
}
.menu-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.menu-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.menu-card-title {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Animasyonlar için temel fade ve slide efektleri */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.23,1.02,.67,1.01), transform 0.8s cubic-bezier(.23,1.02,.67,1.01);
}
.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-slide {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(.23,1.02,.67,1.01), transform 0.8s cubic-bezier(.23,1.02,.67,1.01);
}
.scroll-slide.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Kartlara hover animasyonu */
.pattern-card, .menu-card {
    transition: box-shadow 0.3s, transform 0.3s;
}
.pattern-card:hover, .menu-card:hover {
    box-shadow: 0 8px 32px rgba(184,92,56,0.18), 0 2px 12px rgba(0,0,0,0.10);
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}

/* Butonlara modern efektler */
.franchise-btn, .lang-select button {
    box-shadow: 0 2px 8px rgba(184,92,56,0.10);
    background: linear-gradient(90deg, #b85c38 0%, #6d4c41 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.franchise-btn:hover, .lang-select button:hover {
    background: linear-gradient(90deg, #6d4c41 0%, #b85c38 100%);
    box-shadow: 0 4px 16px rgba(184,92,56,0.18);
    transform: scale(1.06);
}

/* Hero başlıkta gradient yazı efekti */
.hero-title, .anim-text {
    background: linear-gradient(90deg, #fff 60%, #ffe082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero içecek görsellerine parıltı efekti */
.hero-drinks img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 0 4px #fff3e0;
    position: relative;
}
.hero-drinks img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 18px;
    box-shadow: 0 0 24px 8px #ffe08244;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.hero-drinks img:hover::after {
    opacity: 1;
}

/* Kart başlıklarına modern efekt */
.card-title, .menu-card-title {
    letter-spacing: 1px;
    text-shadow: 0 4px 16px #b85c3866, 0 2px 8px #0008;
    background: linear-gradient(90deg, #fff 60%, #ffe082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer'a gradient üst çizgi ve hover sosyal ikonlar */
footer {
    position: relative;
}
footer::before {
    content: '';
    display: block;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #b85c38 0%, #ffe082 100%);
    position: absolute;
    top: 0; left: 0;
}
.social a {
    font-size: 1.5rem;
    margin-right: 16px;
    transition: color 0.2s, transform 0.2s;
}
.social a:hover {
    color: #ffe082;
    transform: scale(1.2) rotate(-8deg);
}

/* Modern kutu gölgeleri ve border efektleri */
.pattern-card, .menu-card {
    border: 1.5px solid #ffe08244;
}

/* Responsive geliştirme */
@media (max-width: 900px) {
    .hero-title { font-size: 2.2rem; }
    .pattern-title, .menu-title { font-size: 1.3rem; }
    .pattern-grid, .menu-grid { gap: 14px; }
}
@media (max-width: 600px) {
    .hero-content { margin-top: 10px; }
    .hero-drinks img { width: 90px; height: 120px; }
    .pattern-card img, .menu-card img { height: 100px; }
    .pattern-card, .menu-card { min-height: 100px; }
    .footer-content { flex-direction: column; gap: 18px; padding: 0 10px 20px 10px; }
} 

/* Hakkımızda Hero Banner */
.about-hero {
    position: relative;
    height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Hikaye Kutusu */
.about-story {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    max-width: 1100px;
    margin: 90px auto 48px auto;
    padding: 48px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-story-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.about-story-img {
    width: 340px;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px #b85c3844;
    border: 4px solid #fff;
}
.about-story-text {
    flex: 1;
}
.about-story-text h2 {
    color: #8d4c2f;
    font-size: 2.1rem;
    margin-top: 0;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
}
.about-story-text p {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Timeline ve Vizyon-Misyon */
.about-vision-mission {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.about-vision-mission::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        #b85c38 0 16px,
        transparent 16px 32px
    );
    transform: translateX(-50%);
    z-index: 0;
}
.about-vision, .about-mission {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    margin: 0 0 60px 0;
    z-index: 1;
}
.about-vision {
    flex-direction: row;
    justify-content: flex-start;
}
.about-mission {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.about-vision-text, .about-mission-text {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px #b85c3844;
    padding: 36px 32px;
    min-width: 320px;
    max-width: 480px;
    font-size: 1.08rem;
    color: #222;
    position: relative;
}
.about-vision-text {
    background: #111;
    color: #fff;
    font-weight: 500;
}
.about-vision-text h3, .about-mission-text h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #b85c38;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
}
.about-vision-img, .about-mission-img {
    width: 340px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 16px #b85c3844;
    border: 4px solid #fff;
}

/* Roastery */
.about-roastery {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}
.about-roastery-title {
    text-align: center;
    font-size: 2.3rem;
    color: #8d4c2f;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.about-roastery-title span {
    color: #b85c38;
    border-bottom: 5px solid #b85c38;
    padding-bottom: 2px;
    font-size: 2.5rem;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.about-roastery-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.about-roastery-img {
    width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px #b85c3844;
    border: 4px solid #fff;
}
.about-roastery-text {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px #b85c3844;
}
.about-roastery-text h4 {
    color: #8d4c2f;
    margin-top: 0;
    font-size: 1.2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-story-inner, .about-roastery-inner, .about-vision, .about-mission {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .about-story-img, .about-vision-img, .about-mission-img, .about-roastery-img {
        width: 100%;
        height: 180px;
    }
    .about-vision-mission::before {
        left: 24px;
        width: 2px;
        transform: none;
    }
    .about-vision, .about-mission {
        margin-left: 0;
        margin-right: 0;
        padding: 0 12px;
    }
}
@media (max-width: 700px) {
    .about-hero { height: 160px; }
    .about-hero-content h1 { font-size: 1.2rem; }
    .about-story, .about-roastery { padding: 12px 2px; }
    .about-story-inner, .about-roastery-inner { gap: 8px; }
    .about-story-text h2, .about-roastery-title { font-size: 1.1rem; }
    .about-vision-text, .about-mission-text, .about-roastery-text { padding: 16px 8px; font-size: 0.98rem; }
} 

/* Menü Hero Banner */
.menu-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.menu-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}
.menu-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.menu-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Kategori Butonları */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 36px 0 24px 0;
}
.menu-categories button {
    background: #8d4c2f;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #b85c3822;
    outline: none;
}
.menu-categories button.active,
.menu-categories button:hover {
    background: #b85c38;
    color: #fffbe7;
    box-shadow: 0 4px 16px #b85c3844;
}

/* Menü Grup Başlıkları */
.menu-group {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 1200px;
    margin: 0 auto 36px auto;
    padding: 32px 24px 24px 24px;
}
.menu-group-title {
    color: #8d4c2f;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border-bottom: 2px solid #b85c38;
    padding-bottom: 4px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Menü Grid ve Kartlar */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.menu-item {
    background: #fff6f0;
    border-radius: 18px;
    box-shadow: 0 2px 12px #b85c3811;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 10px 18px 10px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    position: relative;
    min-height: 220px;
    border: 2px solid transparent;
}
.menu-item:hover {
    box-shadow: 0 8px 32px #b85c3844, 0 2px 12px #b85c3811;
    transform: translateY(-8px) scale(1.04);
    border: 2px solid #b85c38;
    z-index: 2;
}
.menu-img {
    background: #7a1c1c;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #b85c3844;
    transition: background 0.2s;
}
.menu-item:hover .menu-img {
    background: #b85c38;
}
.menu-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px #0002);
}
.menu-name {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
    text-align: center;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
    .menu-hero { height: 180px; }
    .menu-hero-content h1 { font-size: 1.2rem; }
    .menu-group { padding: 18px 4px 12px 4px; }
    .menu-group-title { font-size: 1.1rem; }
    .menu-grid { gap: 12px; }
    .menu-item { min-height: 120px; padding: 14px 4px 10px 4px; }
    .menu-img { width: 60px; height: 60px; }
    .menu-img img { width: 40px; height: 40px; }
} 

/* Şubeler Hero Banner */
.branch-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.branch-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}
.branch-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.branch-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Şube Kartları */
.branch-list {
    max-width: 1300px;
    margin: 60px auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.branch-card {
    background: #e9d8c3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 36px 32px;
    gap: 32px;
    border: 2px solid #b85c3822;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 220px;
    animation: fadeInUp 0.8s cubic-bezier(.23,1.02,.67,1.01);
}
.branch-card:hover {
    box-shadow: 0 8px 32px #b85c3844, 0 2px 12px #b85c3811;
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}
.branch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.branch-info h2 {
    margin: 0 0 4px 0;
    font-size: 1.5rem;
    color: #3d2b1f;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.branch-sub {
    font-size: 1.1rem;
    color: #6d4c41;
    font-weight: 600;
    margin-bottom: 8px;
}
.branch-mail, .branch-address {
    font-size: 1.05rem;
    color: #3d2b1f;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.branch-btn {
    margin-top: 18px;
    background: #8d4c2f;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #b85c3822;
}
.branch-btn:hover {
    background: #b85c38;
    color: #fffbe7;
    box-shadow: 0 4px 16px #b85c3844;
    transform: scale(1.06);
}
.branch-img {
    flex-shrink: 0;
    width: 340px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 12px #b85c3844;
}
.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .branch-card {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px 8px;
    }
    .branch-img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 700px) {
    .branch-hero { height: 160px; }
    .branch-hero-content h1 { font-size: 1.2rem; }
    .branch-list { margin: 24px 0 20px 0; gap: 18px; }
    .branch-card { padding: 10px 2px; }
    .branch-info h2 { font-size: 1.1rem; }
    .branch-btn { font-size: 1rem; padding: 8px 16px; }
} 

/* Franchise Hero Banner */
.franchise-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.franchise-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}
.franchise-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.franchise-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Franchise İçerik Alanı */
.franchise-content {
    max-width: 1300px;
    margin: 60px auto 40px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.franchise-form-box {
    flex: 1.1;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 32px;
    min-width: 320px;
    animation: fadeInUp 0.8s cubic-bezier(.23,1.02,.67,1.01);
}
.franchise-form-box h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #8d4c2f;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-bottom: 24px;
}
.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: flex;
    gap: 18px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.franchise-form input,
.franchise-form select,
.franchise-form textarea {
    border: 1.5px solid #b85c3844;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f7f7;
    transition: border 0.2s;
}
.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
    border: 1.5px solid #b85c38;
    outline: none;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 4px;
}
.franchise-submit {
    margin-top: 10px;
    background: #8d4c2f;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #b85c3822;
}
.franchise-submit:hover {
    background: #b85c38;
    color: #fffbe7;
    box-shadow: 0 4px 16px #b85c3844;
    transform: scale(1.06);
}

/* Franchise Sağ Bilgi ve Akordeon */
.franchise-info-box {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 32px;
    min-width: 320px;
    animation: fadeInUp 1.1s cubic-bezier(.23,1.02,.67,1.01);
}
.franchise-info-text {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 24px;
}
.franchise-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.accordion-item {
    border-bottom: 1.5px solid #b85c3822;
}
.accordion-title {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.13rem;
    font-weight: bold;
    color: #3d2b1f;
    padding: 14px 0;
    cursor: pointer;
    transition: color 0.2s;
}
.accordion-title.active,
.accordion-title:hover {
    color: #b85c38;
}
.accordion-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 1.05rem;
    color: #444;
    padding-bottom: 0;
    transition: max-height 0.4s cubic-bezier(.23,1.02,.67,1.01), opacity 0.3s, padding-bottom 0.3s;
    animation: none;
    word-wrap: break-word;
    white-space: normal;
    width: 100%;
}
.accordion-content.open {
    max-height: 2000px;
    opacity: 1;
    padding-bottom: 14px;
    transition: max-height 0.4s cubic-bezier(.23,1.02,.67,1.01), opacity 0.3s, padding-bottom 0.3s;
    overflow: visible;
}

/* Responsive */
@media (max-width: 1100px) {
    .franchise-content {
        flex-direction: column;
        gap: 18px;
    }
    .franchise-form-box, .franchise-info-box {
        padding: 18px 8px;
    }
}
@media (max-width: 700px) {
    .franchise-hero { height: 160px; }
    .franchise-hero-content h1 { font-size: 1.2rem; }
    .franchise-content { margin: 24px 0 20px 0; gap: 10px; }
    .franchise-form-box h2 { font-size: 1.1rem; }
    .accordion-title { font-size: 1rem; }
} 

/* Duyurular Hero Banner */
.announcement-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #7a1c1c;
}
.announcement-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #7a1c1c 0%, #b85c38 100%);
    opacity: 0.92;
    z-index: 1;
}
.announcement-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.announcement-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Duyurular Grid ve Kartlar */
.announcement-list {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 20px;
}
.announcement-card {
    background: #fff6f0;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(184,92,56,0.13), 0 2px 12px #b85c3811;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #b85c3822;
    cursor: pointer;
    animation: fadeInUp 1s cubic-bezier(.23,1.02,.67,1.01);
}
.announcement-card:hover {
    box-shadow: 0 8px 32px #b85c3844, 0 2px 12px #b85c3811;
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}
.announcement-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: filter 0.3s;
}
.announcement-card:hover img {
    filter: brightness(0.93) saturate(1.1);
}
.announcement-info {
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.announcement-info h3 {
    font-size: 1.25rem;
    color: #7a1c1c;
    margin: 0 0 8px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #b85c3811;
}
.announcement-info p {
    font-size: 1.05rem;
    color: #3d2b1f;
    margin: 0;
    line-height: 1.6;
}

/* Duyurular Responsive */
@media (max-width: 900px) {
    .announcement-hero { height: 180px; }
    .announcement-hero-content h1 { font-size: 1.2rem; }
    .announcement-list { gap: 16px; }
    .announcement-card { min-height: 180px; }
    .announcement-card img { height: 100px; }
}
@media (max-width: 600px) {
    .announcement-list { grid-template-columns: 1fr; padding: 0 4px; }
    .announcement-info { padding: 14px 8px 10px 8px; }
    .announcement-info h3 { font-size: 1rem; }
    .announcement-info p { font-size: 0.95rem; }
} 

/* Duyuru Detay Hero */
.announcement-detail-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #7a1c1c;
}
.announcement-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 1;
}
.announcement-detail-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.announcement-detail-hero-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Duyuru Detay İçerik Kutusu */
.announcement-detail-box {
    max-width: 900px;
    margin: -60px auto 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(184,92,56,0.13), 0 2px 12px #b85c3811;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    padding: 40px 32px;
    position: relative;
    z-index: 3;
    align-items: flex-start;
}
.announcement-detail-img {
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.announcement-detail-img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 16px #b85c3844;
}
.announcement-detail-content {
    flex: 2 1 340px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.announcement-detail-content h2 {
    color: #7a1c1c;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.announcement-detail-content p, .announcement-detail-content ul, .announcement-detail-content ol {
    font-size: 1.05rem;
    color: #3d2b1f;
    margin: 0 0 10px 0;
    line-height: 1.6;
}
.announcement-detail-content a {
    color: #b85c38;
    text-decoration: underline;
    font-weight: 500;
}
.announcement-detail-content a:hover {
    color: #7a1c1c;
}

@media (max-width: 900px) {
    .announcement-detail-hero { height: 180px; }
    .announcement-detail-hero-content h1 { font-size: 1.1rem; }
    .announcement-detail-box { flex-direction: column; gap: 18px; padding: 18px 8px; margin: -30px 4px 20px 4px; }
    .announcement-detail-img, .announcement-detail-content { max-width: 100%; min-width: 0; }
} 

/* Duyurular kartlarındaki başlık ve özetlerde alt çizgiyi kesin kaldır */
.announcement-card h3,
.announcement-card p,
.announcement-card a {
    text-decoration: none !important;
}
.announcement-card a {
    color: inherit;
    cursor: pointer;
} 

/* Duyuru kartı içindeki tüm alt çizgileri kesin kaldır */
.announcement-card * {
    text-decoration: none !important;
}
.announcement-card a {
    color: inherit;
    cursor: pointer;
} 

/* İletişim Hero */
.contact-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #7a1c1c;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.contact-hero-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 24px #000a;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* İletişim Ana Kutu */
.contact-main-box {
    max-width: 1200px;
    margin: 50px auto 40px auto;
    background: none;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
    flex-wrap: wrap;
}
.contact-info-box, .contact-form-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(184,92,56,0.13), 0 2px 12px #b85c3811;
    padding: 36px 32px;
    flex: 1 1 380px;
    min-width: 320px;
    animation: fadeInUp 1s cubic-bezier(.23,1.02,.67,1.01);
}
.contact-info-box {
    margin-bottom: 24px;
}
.contact-info-box h2, .contact-form-box h2 {
    font-size: 1.3rem;
    color: #7a1c1c;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.contact-address {
    font-size: 1.05rem;
    color: #3d2b1f;
    margin: 12px 0 18px 0;
}
.contact-map {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #b85c3844;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form input,
.contact-form textarea {
    border: 1.5px solid #b85c3844;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f7f7;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #b85c38;
    outline: none;
}
.contact-submit {
    margin-top: 10px;
    background: #8d4c2f;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #b85c3822;
}
.contact-submit:hover {
    background: #b85c38;
    color: #fffbe7;
    box-shadow: 0 4px 16px #b85c3844;
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .contact-main-box { flex-direction: column; gap: 18px; padding: 0 4px; }
    .contact-info-box, .contact-form-box { padding: 18px 8px; min-width: 0; }
    .contact-hero { height: 180px; }
    .contact-hero-content h1 { font-size: 1.1rem; }
} 

footer .footer-content a,
.contact-info-row a,
.contact-address a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
footer .footer-content a:hover,
.contact-info-row a:hover,
.contact-address a:hover {
    color: #ffe082 !important;
    text-decoration: underline;
} 

.contact-info-row a,
.contact-address a {
    color: #222 !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.contact-info-row a:hover,
.contact-address a:hover {
    color: #b85c38 !important;
    text-decoration: underline;
} 

/* === Hero Slider 1900x835px === */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(184,92,56,0.08);
  width: 1900px;
  height: 835px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: -36px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.23,1.02,.67,1.01);
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  position: relative;
}
@media (max-width: 1200px) {
  .hero-slider { width: 100vw; height: 420px; min-width: 0; }
}
@media (max-width: 700px) {
  .hero-slider { height: 220px; }
  .hero-slider-btn { width: 36px; height: 36px; font-size: 1.1rem; }
} 

/* Şube Grid */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Franchise Form */
.franchise-form-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 40px;
    width: 700px;
    height: 900px;
    box-sizing: border-box;
    overflow-y: auto;
}

.franchise-form-section {
    flex: 0 0 700px;
}

.franchise-info-section {
    flex: 0 0 700px;
    margin-left: -100px;
}

.franchise-list {
    display: flex;
    gap: 200px;
    max-width: 1400px;
    margin: 0;
    padding: 20px;
}

.franchise-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #8d4c2f;
    font-size: 0.9rem;
}

.franchise-form input,
.franchise-form select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.franchise-form input:focus,
.franchise-form select:focus {
    outline: none;
    border-color: #b85c38;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
}

.checkbox-label span {
    font-size: 0.9rem;
}

.franchise-submit {
    background: #b85c38;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
}

.franchise-submit:hover {
    background: #a04a2a;
}

/* Accordion */
.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.accordion-title {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #8d4c2f;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-content {
    padding: 20px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Contact Map */
.contact-map {
    margin-top: 10px;
    width: 425px;
    height: 215px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Contact Info Row */
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info-row i {
    margin-top: 3px;
    color: #b85c38;
    width: 20px;
}

.contact-info-row div {
    flex: 1;
}

.contact-info-row strong {
    display: block;
    margin-bottom: 5px;
    color: #8d4c2f;
}

.contact-info-row a {
    text-decoration: none;
    color: inherit;
}

.contact-info-row a:hover {
    color: #b85c38;
}

/* Responsive */
@media (max-width: 1100px) {
    .franchise-list {
        flex-direction: column;
        gap: 40px;
    }
    
    .franchise-form-section,
    .franchise-info-section {
        flex: none;
        margin-left: 0;
    }
    
    .franchise-form-box,
    .franchise-accordion {
        width: 100%;
        max-width: 700px;
    }
    
    .branch-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 16px;
        padding: 16px;
    }
}

@media (max-width: 700px) {
    .franchise-form-box {
        padding: 20px;
        height: auto;
        max-height: 600px;
    }
    
    .franchise-list {
        padding: 10px;
        gap: 20px;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
    
    .contact-map {
        width: 100%;
        max-width: 425px;
        height: 200px;
    }
} 

.duyuru-hero-bg {
    width: 1905px;
    height: 300px;
    max-width: 100vw;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.duyuru-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.38);
    z-index: 1;
    pointer-events: none;
}
.duyuru-hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
    font-size: 2.1rem;
    font-weight: bold;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transform: translateY(-150px);
}
.duyuru-hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
} 

@media (max-width: 900px) {
  .mobil-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1002;
  }
  .mobil-logo img { height: 38px; }
  .mobil-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mobil-call-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    padding: 0;
  }
  .mobil-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
} 
/* --- SADECE MOBİL MENÜ CSS --- */
@media (max-width: 768px) {
    .menu-hero-content h1 {
        font-size: 28px;
    }
    .menu-hero-content p {
        font-size: 16px;
    }
    .menu-categories {
        gap: 10px;
        padding: 0 10px;
    }
    .menu-categories button {
        font-size: 14px;
        padding: 8px 16px;
    }
    .menu-section {
        padding: 0 8px 24px;
    }
    .menu-group-title {
        font-size: 20px;
        margin: 20px 0 14px;
    }
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    .menu-item {
        font-size: 15px;
    }
}