/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    pointer-events: none; /* Tıklanmayı engeller */
}

.preloader-video {
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: contain; /* Videonun doğru ölçeklenmesini sağlar */
}
.loader {
    text-align: center;
    color: white;
}


/* Spinner ve text stilleri kaldırıldı - video kullanılıyor */

/* Gezilecek Yerler Sayfası Stilleri */
.places-content {
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 30px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
}

.places-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.places-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.places-header h1 i {
    font-size: 36px;
    color: #ffd700;
}

.places-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* Filtre Butonları */
.places-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%);
    border-color: #ffd700;
}

.filter-btn i {
    font-size: 18px;
    color: #ffd700;
}

/* Gezilecek Yerler Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Yer Kartları */
.place-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.place-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
}

.place-type {
    background: rgba(44, 85, 48, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.place-rating i {
    color: #ffd700;
    font-size: 14px;
}

.place-info {
    padding: 20px;
}

.place-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 10px;
}

.place-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.place-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(44, 85, 48, 0.1);
    color: #2c5530;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.feature i {
    font-size: 12px;
    color: #ffd700;
}

/* Navigasyon Linki */
.place-navigation {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 85, 48, 0.2);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9) 0%, rgba(74, 124, 89, 0.9) 100%);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(44, 85, 48, 1) 0%, rgba(74, 124, 89, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
    color: white;
    text-decoration: none;
}

.nav-link i {
    font-size: 16px;
    color: #ffd700;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.place-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Menü Sayfası Stilleri */

/* Navigasyon Barı */
.menu-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(44, 85, 48, 1) 0%, rgba(74, 124, 89, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.nav-btn i {
    font-size: 20px;
    color: #ffd700;
}

.nav-btn span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-content {
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 30px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.menu-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.menu-header h1 i {
    font-size: 36px;
    color: #ffd700;
}

.menu-header p {
    font-size: 16px;
    opacity: 0.8;
}

.menu-sections {
    max-width: 800px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.menu-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c5530;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #2c5530;
    padding-bottom: 10px;
}

.menu-section h2 i {
    font-size: 28px;
    color: #ffd700;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(160, 82, 45, 0.9) 100%), url('menustok.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.2);
}

.item-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 14px;
    color: #d8b2b2;
    line-height: 1.4;
}

.item-price {
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: rgba(44, 85, 48, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
}

/* İletişim Sayfası Stilleri */
.contact-content {
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 30px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.contact-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-header h1 i {
    font-size: 36px;
    color: #ffd700;
}

.contact-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    position: relative;
}

.phone-card .card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-card .card-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
}

.whatsapp-card .card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-card .card-icon {
    background: linear-gradient(135deg, #EA4335 0%, #D33B2C 100%);
}

.address-card .card-icon {
    background: linear-gradient(135deg, #4285F4 0%, #1A73E8 100%);
}

.card-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
    word-break: break-all;
}


.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9) 0%, rgba(74, 124, 89, 0.9) 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.contact-action:hover {
    background: linear-gradient(135deg, rgba(44, 85, 48, 1) 0%, rgba(74, 124, 89, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-action {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-action:hover {
    background: linear-gradient(135deg, #20C55A 0%, #0F7B6B 100%) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.contact-action i {
    font-size: 18px;
}

/* Harita Bölümü */
.map-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.map-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section h2 i {
    color: #ffd700;
    font-size: 28px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border-radius: 15px;
}

/* Çalışma Saatleri */
.working-hours {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.working-hours h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours h2 i {
    color: #ffd700;
    font-size: 28px;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 15px;
    border-left: 4px solid #2c5530;
}

.hours-item .day {
    font-weight: 600;
    color: #2c5530;
    font-size: 16px;
}

.hours-item .time {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

/* İletişim Sayfası Responsive */
@media (max-width: 768px) {
    .contact-content {
        top: 60px;
        bottom: 25px;
        padding: 15px;
    }
    
    .contact-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-header h1 i {
        font-size: 28px;
    }
    
    .contact-header p {
        font-size: 14px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .card-icon {
    width: 60px;
    height: 60px;
        font-size: 24px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .contact-info {
        font-size: 14px;
    }
    
    .contact-action {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    
    .map-section {
        padding: 20px;
    }
    
    .map-section h2 {
        font-size: 20px;
    }
    
    .working-hours {
        padding: 20px;
    }
    
    .working-hours h2 {
        font-size: 20px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hours-item {
        padding: 12px 15px;
    }
    
    .hours-item .day {
        font-size: 14px;
    }
    
    .hours-item .time {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        top: 55px;
        bottom: 22px;
        padding: 10px;
    }
    
    .contact-header h1 {
        font-size: 20px;
    }
    
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .contact-info {
        font-size: 13px;
    }
    
    .contact-action {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    
    .map-section {
        padding: 15px;
    }
    
    .working-hours {
        padding: 15px;
    }
    
    .hours-item {
        padding: 10px 12px;
    }
}

/* Değerlendirme Sayfası Stilleri */
.review-content {
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 30px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.review-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-header h1 i {
    font-size: 36px;
    color: #ffd700;
}

.review-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* Mesaj Stilleri */
.review-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.review-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.review-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.review-message i {
    font-size: 20px;
}

/* Form Container */
.review-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease;
}

.review-form-container.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* Rating Section */
.rating-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 15px;
    border-left: 4px solid #2c5530;
}

.rating-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

.rating-label i {
    font-size: 20px;
    color: #ffd700;
}

.star-rating {
    display: flex;
    gap: 8px;
    align-items: center;
}

.star {
    font-size: 35px;
    cursor: pointer;
    opacity: 0.3;
    user-select: none;
    transition: all 0.2s ease;
    color: #ffd700;
}

.star.selected,
.star:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Comment Section */
.comment-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 15px;
    border-left: 4px solid #2c5530;
}

.comment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

.comment-label i {
    font-size: 20px;
    color: #ffd700;
}

.comment-section textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid rgba(44, 85, 48, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.comment-section textarea:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

/* Submit Section */
.submit-section {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e3a21 0%, #3a5f47 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.submit-btn i {
    font-size: 18px;
}

/* Stats Container */
.stats-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.stats-container h2 i {
    color: #ffd700;
    font-size: 28px;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 15px;
    border-left: 4px solid #2c5530;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* Değerlendirme Sayfası Responsive */
@media (max-width: 768px) {
    .review-content {
        top: 60px;
        bottom: 25px;
        padding: 15px;
    }
    
    .review-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .review-header h1 i {
        font-size: 28px;
    }
    
    .review-header p {
        font-size: 14px;
    }
    
    .review-form-container {
        padding: 25px;
    }
    
    .rating-section,
    .comment-section {
        padding: 15px;
    }
    
    .rating-label,
    .comment-label {
        font-size: 16px;
    }
    
    .star {
        font-size: 30px;
    }
    
    .comment-section textarea {
        min-height: 100px;
        padding: 12px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stats-container {
        padding: 20px;
    }
    
    .stats-container h2 {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .review-content {
        top: 55px;
        bottom: 22px;
        padding: 10px;
    }
    
    .review-header h1 {
        font-size: 20px;
    }
    
    .review-form-container {
        padding: 20px;
    }
    
    .rating-section,
    .comment-section {
        padding: 12px;
    }
    
    .rating-label,
    .comment-label {
        font-size: 14px;
    }
    
    .star {
        font-size: 25px;
    }
    
    .comment-section textarea {
        min-height: 80px;
        padding: 10px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .stats-container {
        padding: 15px;
    }
    
    .stats-container h2 {
    font-size: 18px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* Gezilecek Yerler Responsive */
@media (max-width: 768px) {
    .places-content {
        top: 60px;
        bottom: 25px;
        padding: 15px;
    }
    
    .places-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .places-header h1 i {
        font-size: 28px;
    }
    
    .places-header p {
        font-size: 14px;
    }
    
    .places-filters {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .filter-btn i {
        font-size: 16px;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .place-image {
        height: 180px;
    }
    
    .place-info {
        padding: 15px;
    }
    
    .place-info h3 {
    font-size: 18px;
    }
    
    .place-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .places-content {
        top: 55px;
        bottom: 22px;
        padding: 10px;
    }
    
    .places-header h1 {
        font-size: 20px;
    }
    
    .places-filters {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .filter-btn i {
        font-size: 14px;
    }
    
    .places-grid {
        gap: 15px;
    }
    
    .place-image {
        height: 160px;
    }
    
    .place-info {
        padding: 12px;
    }
    
    .place-info h3 {
        font-size: 16px;
    }
    
    .place-info p {
        font-size: 12px;
    }
    
    .feature {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .nav-link i {
        font-size: 14px;
    }
}

/* Menü Sayfası Responsive */
@media (max-width: 768px) {
    .menu-navigation {
        gap: 8px;
        padding: 12px;
        margin-bottom: 25px;
    }
    
    .nav-btn {
        padding: 10px 12px;
        min-width: 70px;
        font-size: 11px;
    }
    
    .nav-btn i {
        font-size: 18px;
    }
    
    .nav-btn span {
        font-size: 10px;
    }
    
    .menu-content {
        top: 60px;
        bottom: 25px;
        padding: 15px;
    }
    
    .menu-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-header h1 i {
        font-size: 28px;
    }
    
    .menu-header p {
        font-size: 14px;
    }
    
    .menu-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .menu-section h2 {
        font-size: 20px;
    }
    
    .menu-section h2 i {
        font-size: 24px;
    }
    
    .item-info h3 {
        font-size: 16px;
    }
    
    .item-info p {
        font-size: 12px;
    }
    
    .item-price {
        font-size: 16px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .menu-navigation {
        gap: 6px;
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .nav-btn {
        padding: 8px 10px;
        min-width: 60px;
        font-size: 10px;
    }
    
    .nav-btn i {
        font-size: 16px;
    }
    
    .nav-btn span {
        font-size: 9px;
    }
    
    .menu-content {
        top: 55px;
        bottom: 22px;
        padding: 10px;
    }
    
    .menu-header h1 {
        font-size: 20px;
    }
    
    .menu-section {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .menu-section h2 {
        font-size: 18px;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-price {
        align-self: flex-end;
    }
}

/* Navbar Stilleri */
.navbar {
    position: relative;
    background: rgba(5, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-shrink: 0;
    height: 125px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    max-width: 360px;
    max-height: 144px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    letter-spacing: 1px;
}

/* Main Content Container */
#main-content {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Grid Items */
.grid-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.grid-item:hover::before {
    left: 100%;
}

.grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.grid-content {
    text-align: center;
    padding: 30px;
    z-index: 2;
    position: relative;
}

.icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.icon i {
    font-size: inherit;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.grid-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: inherit;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.grid-content p {
    font-size: 14px;
    color: inherit;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Özel Grid Item Renkleri ve Arka Plan Görselleri */
.menu-item {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(160, 82, 45, 0.9) 100%), 
                url('menustok.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.review-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%), 
                url('degerlendir.webp');
    background-size: cover;
    background-position: center;
    color: #333;
}

.contact-item {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9) 0%, rgba(74, 124, 89, 0.9) 100%), 
                url('iletisimegec.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.reservation-item {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.9) 0%, rgba(100, 149, 237, 0.9) 100%), 
                url('amasra.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        height: 60px; /* Yeni navbar yüksekliği */
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo img {
        max-width: 270px;
        max-height: 108px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .grid-container {
        gap: 2px;
        top: 60px;
        bottom: 25px;
    }
    
    .grid-content {
        padding: 15px;
    }
    
    .icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .grid-content h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .grid-content p {
        font-size: 12px;
    }
    
    .preloader-video {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
        height: 55px; /* Yeni navbar yüksekliği */
    }
    .grid-container {
        gap: 1px;
        top: 55px;
        bottom: 22px;
    }
    
    .grid-content {
        padding: 10px;
    }
    
    .icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .grid-content h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .grid-content p {
        font-size: 11px;
    }
    
    .logo img {
        max-width: 216px;
        max-height: 90px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .preloader-video {
        max-width: 250px;
        max-height: 250px;
    }
}

/* Animasyon Gecikmesi */
.grid-item:nth-child(1) { animation-delay: 0.1s; }
.grid-item:nth-child(2) { animation-delay: 0.2s; }
.grid-item:nth-child(3) { animation-delay: 0.3s; }
.grid-item:nth-child(4) { animation-delay: 0.4s; }

/* Fade In Animasyonu - Kaldırıldı */
.grid-item {
        opacity: 1;
}

/* Touch Desteği */
@media (hover: none) and (pointer: coarse) {
    .grid-item:hover {
        transform: none;
    }
    
    .grid-item:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
    
    /* Mobilde daha iyi touch deneyimi */
    .grid-item {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}


/* Footer Stilleri */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(44, 85, 48, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content p {
    margin: 0;
    line-height: 1.2;
}

.footer-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        height: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1px;
        font-size: 8px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        height: 22px;
    }
    
    .footer-content {
        font-size: 7px;
        gap: 0px;
    }
}

