/* ===================================
   Vaziyet Ocakbaşı - Modern CSS
   ================================= */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #c8102e;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 15px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-6 { width: 50%; }
.col-lg-8 { width: 66.666%; }
.col-lg-12 { width: 100%; }
.col-md-6 { width: 50%; }

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-lg-end {
    text-align: right;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #a00d25;
    border-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

/* ===== Section Styles ===== */
.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--white) !important;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: var(--white);
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== Section Header ===== */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 80px;
    height: 80px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border-bottom-color: rgba(200, 16, 46, 0.1);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .logo-subtitle,
.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-fast);
    display: block;
}

/* Logo siyah arka plan üzerinde beyaz, scroll'da siyah olacak */
.navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-img {
    filter: none;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--white);
    text-align: center;
    margin-top: 5px;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-subtitle {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.btn-reserve {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.2;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-reserve:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reserve:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-reserve:active {
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: block;
    position: relative;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(200, 16, 46, 0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Swiper Custom Styles */
.swiper-button-prev,
.swiper-button-next {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== About Preview Section ===== */
.about-preview {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
}

/* ===== Menu Preview Section ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-item:hover .menu-overlay {
    opacity: 1;
}

.btn-view {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-view:hover {
    background: var(--primary-color);
    color: var(--white);
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.menu-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #e01a3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    transition: var(--transition-fast);
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Gallery Preview Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 16, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 48px;
}

/* ===== Instagram Feed Section ===== */
.instagram-feed {
    background: var(--white);
}

.instagram-feed-container {
    margin-top: 50px;
    min-height: 400px;
}

.instagram-loading {
    text-align: center;
    padding: 60px 20px;
}

.instagram-loading .loader {
    margin: 0 auto 20px;
}

.instagram-loading p {
    color: var(--text-light);
    font-size: 16px;
}

.instagram-api-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.instagram-api-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.instagram-api-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.api-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.api-option {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.api-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.api-option h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.api-option ol {
    padding-left: 20px;
    color: var(--text-light);
}

.api-option li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.api-option a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.api-option code {
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.api-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(200, 16, 46, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    text-align: left;
}

.api-note p {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.instagram-error {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 20px;
}

.instagram-error h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.instagram-error p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.insta-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    transition: var(--transition-fast);
}

.insta-item:hover {
    transform: scale(1.05);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.9), rgba(212, 175, 55, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: var(--white);
    font-size: 48px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.me-2 {
    margin-right: 10px;
}

/* ===== Location Section ===== */
.location-section {
    background: var(--bg-light);
}

.location-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-fast);
}

.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #e01a3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

.location-info-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-address {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.location-details {
    margin-bottom: 30px;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.location-detail-item:hover {
    background: rgba(200, 16, 46, 0.05);
    transform: translateX(5px);
}

.location-detail-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
    min-width: 24px;
}

.location-detail-item div {
    flex: 1;
}

.location-detail-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-detail-item span,
.location-detail-item a {
    color: var(--text-light);
    font-size: 15px;
    display: block;
    transition: var(--transition-fast);
}

.location-detail-item a:hover {
    color: var(--primary-color);
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-buttons .btn {
    flex: 1;
    min-width: 150px;
}

.location-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(10%);
    transition: var(--transition-fast);
}

.location-map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.me-2 {
    margin-right: 8px;
}

/* ===== Contact CTA Section ===== */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00d25 100%);
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
}

.cta-text {
    color: var(--white);
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.working-hours li span:last-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Kapalı günü vurgula - JavaScript ile class eklenebilir */
.working-hours li.closed span:last-child {
    color: #ff6b6b;
    opacity: 0.8;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .developer-credit {
    margin-top: 20px;
    display: inline-block;
}

.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.developer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.developer-badge:hover::before {
    left: 100%;
}

.developer-badge:hover {
    background: rgba(200, 16, 46, 0.2);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.developer-badge .badge-icon {
    font-size: 18px;
    animation: pulse 2s infinite;
}

.developer-badge .badge-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.developer-badge .badge-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.developer-badge:hover .badge-link {
    color: var(--white);
}

.developer-badge .badge-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s;
}

.developer-badge:hover .badge-link::after {
    width: 100%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #a00d25;
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */

@media (max-width: 992px) {
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-lg-12 {
        width: 100%;
    }
    
    .text-lg-end {
        text-align: center;
        margin-top: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 100px 30px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    /* Mobil menüdeki rezervasyon butonu */
    .nav-menu ~ .nav-actions .btn-reserve,
    .nav-menu.active ~ .nav-actions .btn-reserve {
        width: auto;
        min-width: auto;
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        color: var(--white);
        font-size: 18px;
        padding: 20px 0;
        width: 100%;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transition: height 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
        padding-left: 20px;
        transform: none;
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        height: 30px;
    }
    
    .btn-reserve {
        padding: 10px 18px;
        font-size: 13px;
        order: -1;
        margin-bottom: 20px;
        gap: 8px;
        border-radius: 25px;
        min-width: auto;
    }
    
    .btn-reserve i {
        font-size: 14px;
    }
    
    .btn-reserve span {
        display: inline;
        font-size: 12px;
        font-weight: 500;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-image {
        height: 400px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .experience-number {
        font-size: 36px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
        text-align: center;
    }
    
    /* Mobile menu scrollbar */
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
    
    :root {
        --section-padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-slide {
        height: 80vh;
        min-height: 600px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insta-item {
        height: 200px;
    }
    
    /* Location section mobil */
    .location-info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .location-info-card h3 {
        font-size: 1.5rem;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons .btn {
        width: 100%;
    }
    
    .location-map-wrapper {
        height: 400px;
    }
    
    /* Logo mobil boyutları */
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Mobile menu improvements */
    .nav-menu {
        width: 100%;
        max-width: 100vw;
        padding: 80px 20px 30px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 18px 0;
    }
    
    .btn-reserve {
        width: auto;
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        border-radius: 25px;
        justify-content: center;
    }
    
    .btn-reserve i {
        font-size: 14px;
    }
    
    .btn-reserve span {
        font-size: 12px;
        font-weight: 500;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Logo küçük mobil boyutları */
    .logo-img {
        height: 35px;
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
    }
    
    /* Developer badge mobil */
    .developer-badge {
        padding: 10px 18px;
        font-size: 12px;
        gap: 8px;
    }
    
    .developer-badge .badge-icon {
        font-size: 16px;
    }
    
    .developer-badge .badge-text {
        font-size: 12px;
    }
    
    /* Minimal rezervasyon butonu küçük ekranlar için */
    .btn-reserve {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
        border-radius: 20px;
        min-width: auto;
    }
    
    .btn-reserve i {
        font-size: 13px;
    }
    
    .btn-reserve span {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    
    /* Navbar'da rezervasyon butonu için özel stil */
    .nav-actions .btn-reserve {
        padding: 8px 14px;
    }
}

/* ===================================
   MODERN ANIMATIONS & ENHANCEMENTS
   ================================= */

/* Advanced Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Page Header */
.page-header {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(200, 16, 46, 0.4) 100%);
    z-index: 1;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Enhanced Menu Filter Buttons */
.menu-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out;
}

.menu-filter-btn {
    padding: 14px 32px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2c2c2c;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.menu-filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.menu-filter-btn span {
    position: relative;
    z-index: 1;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background: linear-gradient(135deg, #c8102e 0%, #e01a3b 100%);
    color: white;
    border-color: #c8102e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.menu-filter-btn.active {
    animation: pulse 2s infinite;
}

/* Enhanced Menu Section */
.menu-section {
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out;
    opacity: 1;
    animation-fill-mode: forwards;
}

.menu-section.visible {
    opacity: 1;
}

.menu-section-header {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(to right, #c8102e, transparent);
    background-size: 100px 3px;
    background-repeat: no-repeat;
    background-position: 0 bottom;
    position: relative;
    animation: fadeInLeft 0.6s ease-out;
}

.menu-section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c8102e, #e01a3b);
    animation: slideInScale 0.6s ease-out 0.3s both;
}

.menu-section-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #c8102e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.menu-section-header h3::before {
    content: '★';
    color: #c8102e;
    margin-right: 15px;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
    display: inline-block;
}

/* Enhanced Menu List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 5px;
    opacity: 1;
    transform: translateY(0);
}

.menu-list-item.animate {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.menu-list-item.animate:nth-child(1) { animation-delay: 0.1s; }
.menu-list-item.animate:nth-child(2) { animation-delay: 0.15s; }
.menu-list-item.animate:nth-child(3) { animation-delay: 0.2s; }
.menu-list-item.animate:nth-child(4) { animation-delay: 0.25s; }
.menu-list-item.animate:nth-child(5) { animation-delay: 0.3s; }
.menu-list-item.animate:nth-child(6) { animation-delay: 0.35s; }
.menu-list-item.animate:nth-child(7) { animation-delay: 0.4s; }
.menu-list-item.animate:nth-child(8) { animation-delay: 0.45s; }
.menu-list-item.animate:nth-child(9) { animation-delay: 0.5s; }
.menu-list-item.animate:nth-child(10) { animation-delay: 0.55s; }

.menu-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #c8102e, #e01a3b);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.menu-list-item:hover::before {
    transform: scaleY(1);
}

.menu-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-list-item:hover {
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.03) 0%, rgba(200, 16, 46, 0.01) 100%);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.1);
    border-bottom-color: transparent;
}

.menu-item-name {
    font-size: 1.15rem;
    color: #2c2c2c;
    font-weight: 500;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.menu-list-item:hover .menu-item-name {
    color: #c8102e;
    font-weight: 600;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c8102e;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    margin-left: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.menu-list-item:hover .menu-item-price {
    transform: scale(1.1);
    color: #a00d25;
}

.menu-note {
    border-bottom: none !important;
    background: rgba(200, 16, 46, 0.05) !important;
    padding: 15px 25px !important;
}

.menu-note:hover {
    background: rgba(200, 16, 46, 0.08) !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    transform: none !important;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c8102e;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8102e, transparent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c8102e, #e01a3b);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::after {
    width: 400px;
    height: 400px;
}

/* Enhanced Cards */
.card, .feature-card, .menu-item-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before, .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before, .feature-card:hover::before {
    left: 100%;
}

.card:hover, .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation Enhancement */
#preloader {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.loader {
    border-top-color: #c8102e;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
}

.loader-inner {
    border-top-color: #d4af37;
    animation: spin 0.8s linear infinite reverse;
}

/* Enhanced Navbar */
.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Text Reveal Animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: fadeInUp 0.6s ease-out both;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #c8102e 0%, #e01a3b 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Responsive Menu Enhancements */
@media (max-width: 768px) {
    .menu-list {
        padding: 15px;
        border-radius: 10px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .menu-list-item {
        padding: 15px 20px;
        flex-wrap: wrap;
        display: flex;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .menu-item-name {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 8px;
        display: block;
    }
    
    .menu-item-price {
        font-size: 1.1rem;
        margin-left: 0;
        width: 100%;
        display: block;
    }
    
    .menu-section-header h3 {
        font-size: 1.4rem;
    }
    
    .menu-section {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 50px;
    }
    
    .page-header {
        height: 350px;
        background-attachment: scroll;
    }
    
    .menu-filter {
        gap: 10px;
        margin: 40px 0;
        display: flex;
        flex-wrap: wrap;
    }
    
    .menu-filter-btn {
        padding: 12px 24px;
        font-size: 12px;
        display: inline-block;
    }
    
    .menu-section-header {
        display: block;
    }
    
    .menu-section-header h3 {
        display: flex;
    }
}