/* Tema 1 - Klasik Restoran: Geleneksel, şık, klasik düzen */

:root {
    --primary-color: #2c1810;
    --secondary-color: #4a2c1a;
    --text-color: #333;
    --bg-light: #f5f3f0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Hero Section */
.theme-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0;
    color: #2c1810;
    text-align: center;
    overflow: hidden;
}

/* Mobilde hero section navbar'ın altına kadar gelsin */
@media (max-width: 991.98px) {
    .theme-hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Yazıları ve butonları navbar'ın altına kaydır (100px + 20px = 120px) */
    .hero-content-wrapper {
        padding-top: 120px !important;
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero slide'ların overlay'in altında kalmaması için */
.hero-slider .hero-slide {
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f3f0; /* Fallback renk */
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: translateX(100%);
    will-change: transform, opacity;
    z-index: 0;
}

/* İlk slide başlangıçta görünür (HTML'de active class'ı var) */
.hero-slide.active:first-child,
.hero-slide:first-child.active,
.hero-slider > .hero-slide:first-child.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    z-index: 1 !important;
}

.hero-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    z-index: 1;
}

.hero-slide.prev {
    transform: translateX(-100%) !important;
    z-index: 0;
    opacity: 0;
}

/* Active olmayan tüm slide'lar sağda olsun (ilk slide hariç) */
.hero-slide:not(.active):not(.prev):not(:first-child) {
    transform: translateX(100%);
    opacity: 0;
}

/* Hero Overlay - Resimlerin üstünde ama çok hafif (geçici olarak kapatıldı) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay geçici olarak kapatıldı - resimlerin görünmesi için */
    /* background: linear-gradient(135deg, rgba(245, 230, 211, 0.03) 0%, rgba(232, 213, 196, 0.03) 100%); */
    background: transparent;
    z-index: 2;
    pointer-events: none; /* Overlay'in tıklamaları engellemesini önle */
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-content {
    border: none;
    padding: 40px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.theme-hero h1 {
    font-family: 'Times New Roman', serif;
    letter-spacing: 2px;
    color: #2c1810;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9), 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.theme-hero .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c1810;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0;
    padding: 8px 25px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

.btn-light, .btn-outline-light {
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Butonları - Açık arka plan için özel stiller */
.theme-hero .btn-light {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.theme-hero .btn-light:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.theme-hero .btn-outline-light {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.theme-hero .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(44, 24, 16, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(44, 24, 16, 0.7);
    border-color: rgba(44, 24, 16, 0.7);
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-family: 'Times New Roman', serif;
    letter-spacing: 1px;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Menu Section */
.menu-section {
    background: white;
    border-top: 5px solid var(--primary-color);
}

.category-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.category-card .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.category-card .card-body {
    background: #fafafa;
}

.category-card .card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
}

.product-card {
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    object-fit: cover;
    border-radius: 0;
}

/* Masaüstü görünümünde kartların eşit yükseklikte olması için */
@media (min-width: 769px) {
    .product-card .row {
        display: flex !important;
        height: 100% !important;
        flex: 1 !important;
    }
    
    .product-card .col-md-4 {
        display: flex !important;
        height: 100% !important;
        min-height: 200px !important;
    }
    
    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .product-card .col-md-8 {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-card .card-body {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }
    
    .product-card .price-container {
        margin-top: auto !important;
    }
}

.product-card .card-title {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.order-btn {
    padding: 10px;
}

/* Contact Section */
.contact-section {
    background: white;
    border-top: 5px solid var(--primary-color);
}

.contact-section h3 {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-color);
}

.contact-item a {
    color: #000 !important;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* Contact Page - Enhanced Styles */
.contact-hero-section {
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.5) 0%, rgba(232, 213, 196, 0.5) 100%), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&h=400&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 0 80px !important;
    color: #2c1810 !important;
    text-align: center !important;
    margin-top: 76px !important;
    display: block !important;
}

.contact-hero-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #2c1810;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-info-card,
.contact-form-card {
    background: var(--white) !important;
    padding: 40px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    border-top: 4px solid var(--primary-color) !important;
    height: 100%;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.contact-section-title {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
}

.contact-section-title i {
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--bg-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Times New Roman', serif;
}

.contact-info-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

.contact-info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.social-links-contact h5 {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-weight: 700;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon-contact {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon-contact:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

/* Contact Form Styles */
.contact-form {
    margin-top: 20px;
}

.form-group-contact {
    margin-bottom: 20px;
}

.form-group-contact label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Times New Roman', serif;
}

.form-control-contact {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    background: var(--white) !important;
    color: var(--text-color) !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    font-family: 'Times New Roman', serif !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.form-control-contact:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 24, 16, 0.1);
}

.form-control-contact::placeholder {
    color: #999;
}

textarea.form-control-contact {
    resize: vertical;
    min-height: 150px;
}

.btn-contact-submit {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Times New Roman', serif !important;
    text-transform: uppercase !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-contact-submit:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 24, 16, 0.3) !important;
}

.btn-contact-submit i {
    margin-right: 8px;
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--white);
}

.map-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Reservation Page - Modern Styles */
.reservation-hero-section {
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.5) 0%, rgba(232, 213, 196, 0.5) 100%), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&h=400&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 0 80px !important;
    color: #2c1810 !important;
    text-align: center !important;
    margin-top: 76px !important;
    display: block !important;
}

.reservation-hero-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #2c1810;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.reservation-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.reservation-main-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.reservation-form-card,
.reservation-contact-card {
    background: var(--white) !important;
    padding: 40px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    border-top: 4px solid var(--primary-color) !important;
    height: 100%;
    border-radius: 0 !important;
}

.reservation-section-title {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
}

.reservation-section-title i {
    color: var(--primary-color);
}

/* Reservation Form Styles */
.reservation-form {
    margin-top: 20px;
}

.form-group-reservation {
    margin-bottom: 20px;
}

.form-group-reservation label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Times New Roman', serif;
}

.form-control-reservation {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    background: var(--white) !important;
    color: var(--text-color) !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    font-family: 'Times New Roman', serif !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.form-control-reservation:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(44, 24, 16, 0.1) !important;
}

.form-control-reservation::placeholder {
    color: #999;
}

textarea.form-control-reservation {
    resize: vertical;
    min-height: 120px;
}

.btn-reservation-submit {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Times New Roman', serif !important;
    text-transform: uppercase !important;
    border: 2px solid var(--primary-color) !important;
    width: 100%;
}

.btn-reservation-submit:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 24, 16, 0.3) !important;
}

.btn-reservation-submit i {
    margin-right: 8px;
}

/* Reservation Contact Card */
.reservation-contact-text {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.reservation-contact-item {
    padding: 25px;
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.reservation-contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(44, 24, 16, 0.1);
}

.reservation-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.reservation-icon-wrapper.phone-icon {
    background: var(--primary-color);
    color: white;
}

.reservation-icon-wrapper.whatsapp-icon {
    background: #25D366;
    color: white;
}

.reservation-contact-content {
    text-align: center;
}

.reservation-contact-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.reservation-contact-content p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.reservation-contact-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservation-contact-content a:hover {
    color: var(--primary-color);
}

.btn-reservation-call {
    display: inline-block;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 12px 30px;
    border: 2px solid var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.5px;
}

.btn-reservation-call:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

.btn-reservation-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border: 2px solid #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.5px;
}

.btn-reservation-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.reservation-hours-info {
    padding-top: 25px;
    border-top: 2px solid var(--bg-light);
}

.reservation-hours-info h5 {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.reservation-hours-info i {
    color: var(--primary-color);
}

.hours-list-reservation {
    margin-top: 15px;
}

.hours-item-reservation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    font-family: 'Times New Roman', serif;
}

.hours-item-reservation:last-child {
    border-bottom: none;
}

.hours-item-reservation .hours-day {
    color: var(--text-color);
    font-weight: 500;
}

.hours-item-reservation .hours-time {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Section */
.about-section {
    background: white;
    border-top: 5px solid var(--primary-color);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-image {
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-content {
    padding: 20px;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    padding: 30px 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-image-wrapper {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image-wrapper {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-title {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Popular Products Section */
.popular-products-section {
    background: white;
    border-top: 5px solid var(--primary-color);
}

/* Popular Products Slider */
.popular-products-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.popular-products-slider {
    overflow: hidden;
    position: relative;
}

.popular-products-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 0;
}

.popular-product-slide {
    flex: 0 0 25%;
    padding: 0 15px;
    min-width: 0;
    box-sizing: border-box;
    width: 25%;
}

@media (max-width: 992px) {
    .popular-product-slide {
        flex: 0 0 33.333%;
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .popular-product-slide {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 576px) {
    .popular-product-slide {
        flex: 0 0 100%;
        width: 100%;
    }
}

.popular-product-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.popular-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.popular-product-image {
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
    width: 100%;
}

.popular-product-card:hover .popular-product-image {
    transform: scale(1.1);
}

.popular-product-card .card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Gallery Preview Section */
.gallery-preview-section {
    background: var(--bg-light);
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    height: 300px;
}

.gallery-preview-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover .gallery-preview-image {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    transform: translateY(0);
}

.gallery-preview-title {
    color: white;
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.gallery-preview-description {
    color: white;
    font-family: 'Times New Roman', serif;
    font-size: 0.95rem;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    border-top: 5px solid var(--primary-color);
}

.testimonial-card {
    background: var(--bg-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-left-color: var(--secondary-color);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-comment {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
    min-height: 100px;
}

.testimonial-author {
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    padding-top: 15px;
    border-top: 2px solid rgba(44, 24, 16, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .theme-hero {
        padding: 0 !important;
        min-height: 100vh !important;
        margin-top: 0 !important;
    }
    
    /* Hero görselinin navbar'ın altına kadar gelmesi için */
    .hero-slider {
        top: 0 !important;
    }
    
    .hero-slide {
        top: 0 !important;
    }
    
    .hero-slider-indicators {
        bottom: 20px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    /* Yazıları ve butonları navbar'ın altına kaydır (100px + 20px = 120px) */
    .hero-content-wrapper {
        padding-top: 120px !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card .row {
        flex-direction: column;
    }
    
    /* Mobilde menü kartlarını profesyonel hale getir - eşit boyutlar */
    .product-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: 330px !important;
    }
    
    .product-card .row {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        flex: 1 !important;
    }
    
    /* Resim alanı - sabit yükseklik */
    .product-card .col-md-4 {
        width: 100% !important;
        flex: 0 0 auto !important;
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .product-image {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    /* İçerik alanı - sabit yükseklik ve flexbox */
    .product-card .col-md-8 {
        width: 100% !important;
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 150px !important;
    }
    
    .product-card .card-body {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        padding: 12px 15px 15px 15px !important;
        justify-content: flex-start !important;
    }
    
    /* İsim alanı */
    .product-card .card-title {
        font-size: 1.1rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
        min-height: 2.6em !important;
        max-height: 2.6em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Açıklama alanı */
    .product-card .text-muted.small {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
        min-height: 2.8em !important;
        max-height: 2.8em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Badge alanı */
    .product-card .badge {
        margin-bottom: 8px !important;
    }
    
    /* Fiyat alanı - en alta sabitle ama boşluk azalt */
    .product-card .price-container {
        margin-top: auto !important;
        padding-top: 4px !important;
    }
    
    .product-card .price,
    .product-card .price-container .fw-bold {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Stok bilgisi */
    .product-card .text-muted.d-block {
        margin-top: 4px !important;
        font-size: 0.75rem !important;
    }
    
    /* Contact Page Responsive */
    .contact-hero-section {
        padding: 80px 0 60px;
        margin-top: 56px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-wrapper {
        margin: 0 auto 15px;
    }
    
    .social-icons-contact {
        justify-content: center;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    /* Reservation Page Responsive */
    .reservation-hero-section {
        padding: 80px 0 60px !important;
        margin-top: 56px !important;
    }
    
    .reservation-hero-title {
        font-size: 2.5rem;
    }
    
    .reservation-hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .reservation-form-card,
    .reservation-contact-card {
        padding: 30px 20px !important;
        margin-bottom: 30px;
    }
    
    .reservation-section-title {
        font-size: 1.5rem;
    }
    
    .reservation-contact-item {
        text-align: center;
    }
    
    /* New Sections Responsive */
    .about-image {
        height: 300px;
    }
    
    .about-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
    
    .gallery-preview-item {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .testimonial-comment {
        min-height: auto;
    }
}

