/* assets/css/style.css */
/* Altın Portakal Cafe - Premium Design System */

:root {
    --gold: #FF7B00;
    /* Logodaki Turuncu/Altın Tonu */
    --gold-light: #FFB300;
    --white: #ffffff;
    --off-white: #fafafa;
    --black: #1a1a1a;
    --dark-gray: #333333;
    --light-gray: #eeeeee;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --font-primary: 'Montserrat', sans-serif;

    /* Kanal Renkleri */
    --bein: #5d2f86;
    --exxen: #000000;
    --ssport: #009FE3;
    --trt: #E30613;
    --dsmart: #1E4F9E;
    --tv8: #C8102E;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

html {
    scroll-padding-top: 90px;
    background-color: #ffffff !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
    background-color: #ffffff !important;
    color: #1A1A1A;
    font-family: var(--font-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-weight: 800;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITIES */
.gold {
    color: var(--gold);
}

.gray {
    color: #888;
}

.black-text {
    color: var(--black);
}

.gold-bg {
    background-color: var(--gold);
}

/* BUTTONS */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* HEADER */
.main-header {
    background: var(--white);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header.header-scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


.logo a {
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

/* Global spacing / anchor offset */
/* Global spacing consolidated above */

.page-motto-section {
    padding: 150px 0 60px;
    margin-top: 0;
    scroll-margin-top: 90px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

/* Nav Buttons */
.nav-btn-gold {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn-gold:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

.nav-btn-outline {
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 6px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn-outline:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Unified Page Headers */
.blog-header-box {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 60px;
    background-color: #ffffff;
    /* Ensure readability on new background */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-header-box h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.blog-header-box p {
    margin-top: 20px;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--black);
    cursor: pointer;
    z-index: 1001;
}

/* Visibility Helpers */
.desktop-only {
    display: block;
}

.mobile-only,
.mobile-only-btn {
    display: none !important;
}

@media (min-width: 992px) {

    .mobile-only,
    .mobile-only-btn {
        display: none !important;
    }

    .desktop-only {
        display: block !important;
    }
}


/* Split Layout System */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

@media (min-width: 901px) {
    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .split-text,
    .split-image {
        flex: 1;
    }
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}


@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-only-btn {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* HERO SLIDER */
.home-hero-slider {
    height: 85vh;
    /* Reduced height */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Mobilde daha iyi performans */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    min-height: 450px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    /* Dinamik font */
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 5px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: nowrap;
}

.hero-btns .btn-primary,
.hero-btns .btn-secondary {
    min-width: 220px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 40px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* INFO CARDS INTEGRATED INTO HERO */
.home-hero-slider {
    position: relative;
    overflow: visible;
    /* To allow cards to overflow bottom */
    margin-bottom: 80px;
}

.info-cards-section {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card.highlight {
    background: var(--black);
    color: var(--white);
}

.info-card.highlight h3 {
    color: var(--gold);
}

.info-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    /* Standart kart metinleri açık renk yapıldı */
}

.info-card.highlight p {
    color: #ddd;
    /* Koyu kart üzerindeki metin de açıldı */
}

/* SECTION TITLES */
.section-title-wrap {
    text-align: center;
    margin: 60px 0 40px;
    content-visibility: auto;
    /* Performance optimization */
}

.section-title-wrap h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
}

.title-line {
    height: 4px;
    width: 80px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* MATCH SECTION - SPLIT LAYOUT */
.match-section-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    height: 650px;
}

.match-sidebar {
    flex: 1 1 38%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.match-sidebar-content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 20px;
}

/* Scrollbar Styling */
.match-sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.match-sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.match-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.sidebar-header {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    margin: -30px -30px 20px -30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    text-shadow: none;
}

.sidebar-item {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border-left: 6px solid transparent;
    transition: all 0.3s ease;
    min-height: 120px;
    background: #fff;
    margin: 5px 0 10px;
    /* Kartlar arası boşluk */
    border-radius: 15px;
    /* Köşeleri yuvarlat */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Hafif gölge */
}

.sidebar-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--gold);
}

.sidebar-item.active {
    border-left-color: var(--gold);
    background: #fffbf0;
}

/* Old sidebar-top-row removed as structure changed */

.sidebar-channel-badge {
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.channel-bein {
    background: #5c2e91;
    border: 2px solid #5c2e91;
}

.channel-exxen {
    background: #FFD700;
    color: #000;
    border: 2px solid #FFD700;
}

.channel-ssport {
    background: #00AEEF;
    border: 2px solid #00AEEF;
}

.channel-dsmart {
    background: #1e90ff;
    border: 2px solid #1e90ff;
}

.channel-tv8 {
    background: #E30613;
    border: 2px solid #E30613;
}

.channel-trt {
    background: #E30613;
    border: 2px solid #E30613;
}

.channel-default {
    background: #888;
}

.channel-ssport {
    background: var(--ssport);
}

.channel-trt {
    background: var(--trt);
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.live-badge {
    color: #ff0000;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pulseRed 1.5s infinite;
}

.live-badge i {
    font-size: 0.8rem;
}

.sidebar-teams {
    font-weight: 800;
    font-size: 1.1rem;
}

/* DETAIL VIEW */
.match-detail-view {
    flex: 1 1 62%;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.detail-header {
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.detail-league {
    background: var(--gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.teams-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.detail-teams {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    flex: 1;
}

.detail-teams:first-child {
    text-align: right;
}

.detail-teams:last-child {
    text-align: left;
}

.vs-badge {
    width: 45px;
    height: 45px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0 15px;
}

.detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: var(--off-white);
    padding: 10px;
    border-radius: 12px;
}

.seo-card {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    border-left: 5px solid var(--bein);
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seo-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--bein);
}

.seo-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.menu-section-title {
    font-weight: 800;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.match-menus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 menü tıkız durması için */
    gap: 10px;
    flex: 0 0 auto;
    margin: auto 0;
    padding: 0 10px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.featured-grid .menu-card {
    height: 100%;
    padding: 0;
    border: 1px solid #e6e7ec;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(12, 18, 38, 0.08);
}

.featured-grid .menu-card .menu-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 250px;
}

.featured-grid .menu-card .menu-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.featured-grid .menu-card .menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.dynamic-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.match-menu-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.14), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: #0b0c10;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 15px 10px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.match-menu-card .match-menu-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 800;
}

.match-menu-card .menu-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    color: #0b0c10;
}

.match-menu-card .price {
    color: #b86d05;
    font-weight: 800;
    font-size: 0.95rem;
}

.match-menu-card .select-label {
    display: inline-block;
    font-size: 0.85rem;
    color: #0b0c10;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.65);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.4);
    font-weight: 700;
}

.match-menu-card.selected {
    border-color: #d48806;
    box-shadow: 0 12px 30px rgba(212, 136, 6, 0.25);
}

.menu-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 25px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card:hover,
.menu-card.selected {
    border-color: var(--gold);
    background: #fffcf5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.menu-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.menu-name {
    font-weight: 800;
    font-size: 0.9rem;
}

.menu-desc {
    font-size: 0.7rem;
    color: #666;
}

.btn-detail-reserve {
    background: var(--whatsapp-green);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-top: auto;
}

/* ABOUT SUMMARY */
.about-summary-sec {
    padding: 30px 0;
    /* Boşluk daha da azaltıldı */
    background: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 30px;
    box-shadow: 30px 30px 0 var(--gold);
}

.about-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

/* PAGE BANNERS */
.page-title-banner {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-title-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 5px;
}

.page-title-banner.gold-bg h1 {
    color: var(--black);
}

/* FOOTER CARD DESIGN */
.main-footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.footer-grid>div {
    background: #111;
    padding: 40px 30px;
    border-radius: 30px;
    border: 2px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.footer-grid>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.2);
}

.footer-info .logo {
    margin-bottom: 25px;
    color: white;
}

.footer-info p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--gold);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Remove previous complex border effect to keep it clean and solid as requested */
.social-links a::before {
    display: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.5);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold-light);
}

.social-links a i {
    transition: transform 0.4s ease;
}

.social-links a:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.footer-bottom {
    background: #111;
    padding: 20px 0 10px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* QR MENU SPECIFIC */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    background: none;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    color: white;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.menu-item-card {
    background: white;
    border-radius: 20px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.menu-item-img {
    width: 150px;
    flex-shrink: 0;
}

.menu-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.menu-item-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.menu-item-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    color: var(--gold);
    font-weight: 900;
    font-size: 1.4rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* RESPONSIVE & MOBILE OPTIMIZATIONS */
/* Tablet & Small Laptop (1024px and down) */
@media (max-width: 1024px) {

    /* Genel Fontlar */
    html {
        font-size: 15px;
        /* Base font size reduction */
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .section-title-wrap h2 {
        font-size: 2.2rem;
    }

    /* Layout Adjustments */
    .grid-2 {
        gap: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet (768px and down) */
@media (max-width: 900px) {

    /* Header nav ve yapı */
    /* Header nav ve yapı */
    .header-right {
        gap: 15px;
    }

    /* Page Headers Offset for Fixed Navigation */
    .blog-header-box {
        margin-top: 140px !important;
        /* Adjusted for fixed header */
    }

    .page-motto-section {
        padding-top: 140px !important;
        /* Adjusted for fixed header layout */
    }


    .mobile-menu-btn {
        display: block;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .main-nav ul.active {
        display: flex;
    }

    .match-section-wrapper {
        height: auto !important;
        flex-direction: column;
    }

    .match-sidebar {
        height: 600px !important;
        flex: none;
        width: 100%;
        border-right: none;
    }

    .match-detail-view {
        min-height: auto;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
        /* Görsel üstte */
    }

    .about-img img {
        box-shadow: 15px 15px 0 var(--gold) !important;
        margin: 0 auto;
        max-width: 90%;
    }

    .about-text {
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Hero Slider */
    .home-hero-slider {
        padding: 130px 0 60px;
        height: auto;
        min-height: 500px;
    }

    /* Kartlar mobilde yatay scroll yerine alt alta daha iyi, 
       ama yatay scroll isteyenler için snap eklenebilir. 
       Burada alt alta (stack) tercih edildi. 
    */
    .featured-grid,
    .dynamic-menu-grid,
    .menu-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .menu-item-card {
        flex-direction: column;
    }

    .menu-item-img {
        width: 100%;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Match Schedule Section Styling - Global */
.match-schedule-section {
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 60px 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}

.match-schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/pattern-dark.png'); */
    opacity: 0.05;
    pointer-events: none;
}

/* Mobile (600px and down) */
@media (max-width: 600px) {


    /* Typography Overrides */
    .info-cards-section {
        margin-top: -50px;
    }

    h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .section-title-wrap {
        margin: 40px 0 30px;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
        letter-spacing: 1px !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    /* Container Padding */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
    }

    /* Info Grid Mobile Containment */
    .info-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    /* Grids Refinement */
    .featured-grid,
    .dynamic-menu-grid,
    .menu-items-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 20px !important;
    }

    /* Card Styling */
    .menu-card {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
    }

    .menu-img {
        height: 180px !important;
    }

    /* Info Cards - Mobile Look */
    .info-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 15px;
        gap: 15px;
        border-left: 4px solid var(--gold);
        width: 100%;
    }

    .info-icon {
        margin-bottom: 0;
        font-size: 1.5rem;
        width: 40px;
    }

    .info-card h3 {
        font-size: 0.95rem;
        margin: 0;
    }

    .info-card p {
        display: block;
        margin-top: 5px;
        font-size: 0.85rem;
    }

    /* Match Section Fixes - Mobile */
    .match-section-wrapper {
        width: 100%;
    }

    .match-sidebar {
        height: auto !important;
        max-height: 450px;
    }

    .sidebar-item {
        padding: 15px;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-width: 0;
        width: auto;
    }

    .sidebar-teams {
        font-size: 0.9rem;
    }

    .sidebar-channel-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .match-menus {
        grid-template-columns: 1fr 1fr;
    }

    .detail-teams {
        font-size: 1.1rem !important;
    }

    .vs-badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 10px 0;
    }

    /* Hero Buttons Mobile Optimization */
    .hero-btns {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
        padding: 0 20px;
        margin-top: 25px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100% !important;
        padding: 15px !important;
        font-size: 0.95rem !important;
        text-align: center;
        justify-content: center;
    }

    /* Footer Stack - Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .footer-grid>div {
        padding: 30px 20px;
    }







    /* Mobile Only Buttons Styling inside Menu */
    @media (max-width: 991px) {
        .mobile-only-btn {
            display: flex !important;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .mobile-only-btn a {
            width: 100% !important;
            text-align: center;
            padding: 15px !important;
            font-size: 1rem !important;
            border-radius: 12px !important;
        }
    }

    /* Prevent text overflow */
    h1,
    h2,
    h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .about-img img {
        box-shadow: 10px 10px 0 var(--gold) !important;
        max-width: calc(100% - 10px);
    }

    .blog-post-body {
        padding: 20px !important;
    }

    .blog-post-title {
        font-size: 1.4rem !important;
    }

    /* Global Overflow Fix */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    * {
        box-sizing: border-box;
        max-width: 100vw;
    }


    /* Global Overflow Fix */
    * {
        box-sizing: border-box;
        max-width: 100vw;
    }

    /* Küçük Telefonlar (380px altı) */
    @media (max-width: 380px) {
        .match-menus {
            grid-template-columns: 1fr;
        }
    }

    /* LOGO ANIMATION & INTERACTION */
    @keyframes logoEnter {
        0% {
            opacity: 0;
            transform: scale(0.8) translateY(-30px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .logo img {
        /* Entrance Animation on Load */
        animation: logoEnter 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        will-change: transform, opacity;
        /* Transition for Hover is defined in header block */
    }

    @media (max-width: 600px) {
        .split-layout {
            flex-direction: column !important;
            gap: 30px;
        }

        .split-image {
            width: 100%;
            margin-bottom: 20px;
        }

        .split-text {
            width: 100%;
            text-align: left;
        }
    }

    .logo img:hover {
        transform: scale(1.15) !important;
        filter: drop-shadow(0 10px 20px rgba(255, 123, 0, 0.2));
    }
}

/* CONTACT PAGE STYLES */
.contact-wrapper {
    margin: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.info-section {
    margin-bottom: 40px;
}

.info-subtitle {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--black);
}

.info-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: #fdf6e9;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--black);
}

.detail-content p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.contact-social-wrap h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 50px;
    height: 50px;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #555;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-contact a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
}

.form-container {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.form-container h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.form-container p {
    color: #777;
    margin-bottom: 40px;
}

.form-row {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: #f8f9fa;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
    outline: none;
    box-shadow: 0 10px 20px rgba(212, 136, 6, 0.05);
}

.contact-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contact-map-full {
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .form-container {
        padding: 40px 25px;
    }

    .contact-map-full {
        height: 350px;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fcfcfc, #f7f7f9);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.testimonial-card .brand-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px !important;
    opacity: 0.15;
    filter: grayscale(1);
    transition: var(--transition);
}

.testimonial-card:hover .brand-logo {
    opacity: 0.8;
    filter: grayscale(0);
}

.btn-google {
    background: #4285F4 !important;
    color: white !important;
    border: none;
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
}

.btn-google:hover {
    background: #357ae8 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #ffc107;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .user-name {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--black);
}

.testimonial-card .user-title {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    background: #fcfcfc;
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--black);
    transition: var(--transition);
    user-select: none;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 25px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

/* LOGO HUGE ZOOM ANIMATION */
@keyframes hugeZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.logo-huge-zoom {
    animation: hugeZoomPulse 4s infinite ease-in-out;
    display: inline-block;
}

/* MINIMAL FOOTER RESERVATION BUTTON */
.reservation-btn-wrap {
    margin-bottom: 30px;
}

.btn-minimal-reserve {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 14px 28px;
    border-radius: 50px;
    color: white !important;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-minimal-reserve i {
    font-size: 1.2rem;
}

.btn-minimal-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #2ae771, #16a695);
}

@media (max-width: 600px) {
    .btn-minimal-reserve {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}