/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Genel Stiller */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

/* Başlık Fontları */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Paragraf ve Metin Stilleri */
p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2d3748;
}

/* Navbar Yazı Tipleri */
.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Buton Yazı Tipleri */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
}

/* Kart Başlıkları */
.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1a252f;
}

.card-text {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    line-height: 1.6;
}

/* Footer Yazı Tipleri */
.footer {
    font-family: 'Inter', sans-serif;
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Mobil Responsive Yazı Boyutları */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
    
    body {
        font-size: 0.95rem;
    }
}

.navbar-brand img {
    max-height: 50px;
}

/* Slider Stilleri */
.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.carousel-caption h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.carousel-caption p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Dinamik slider stilleri CSS değişkenleri ile override edilecek */

/* Google Harita Responsive */
#map iframe {
    width: 100% !important;
    height: 500px !important;
    border-radius: 15px;
}

/* Ana Sayfa Harita Stilleri */
.map-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px;
    margin: 0 auto;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(40,167,69,0.1));
    border-radius: 15px;
    z-index: -1;
}

/* Harita Responsive Düzenlemeler */
@media (max-width: 768px) {
    #map iframe {
        height: 350px !important;
    }
    
    .map-container {
        padding: 5px;
    }
}

/* İletişim Sayfası Harita Stilleri */
.contact-map-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px;
}

.contact-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(40,167,69,0.1));
    border-radius: 15px;
    z-index: -1;
}

#map iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#map iframe:hover {
    transform: scale(1.02);
}

/* Ulaşım Bilgileri Kartı */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.card-title {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

/* Ulaşım İkonları */
.fas.fa-map-marker-alt.text-danger,
.fas.fa-car.text-info,
.fas.fa-bus.text-success {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Responsive Harita */
@media (max-width: 768px) {
    #map iframe {
        height: 300px !important;
    }
    
    .map-container {
        margin-bottom: 20px;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* Ana Sayfa Harita Stilleri */
.map-container {
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
}

/* Hızlı İletişim Butonları */
.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Ana Sayfa Oda Kartları */
.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.room-card .card-img-top {
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.room-card:hover .card-img-top {
    transform: scale(1.05);
}

.room-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.room-info .col-4 {
    border-right: 1px solid #dee2e6;
}

.room-info .col-4:last-child {
    border-right: none;
}

.room-price {
    font-size: 1.1em;
    color: var(--primary-color) !important;
}

/* Oda Özellikleri */
.room-features {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.features-list .badge {
    font-size: 0.75em;
    padding: 4px 8px;
}

.features-list .badge i {
    font-size: 0.8em;
}

/* Bölüm Başlıkları */
.section-title {
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0,123,255,0.3));
    margin-top: 15px;
    border-radius: 2px;
}

/* Responsive Oda Kartları */
@media (max-width: 768px) {
    .room-card {
        margin-bottom: 20px;
    }
    
    .room-info .col-4 {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .room-info .col-4:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* Dinamik Renkler */
:root {
    --primary-color: #007bff;
    --text-color: #333333;
    --navbar-bg: #ffffff;
    --footer-bg: #343a40;
    --navbar-link-color: #333333;
    --navbar-link-font-size: 16px;
}

.text-primary, .btn-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Navbar background is now controlled dynamically in header.php based on transparent setting */

footer {
    background-color: var(--footer-bg) !important;
}

body {
    color: var(--text-color);
}

/* Kart Stilleri */
.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Galeri Stilleri */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Modal Stilleri */
.modal-dialog {
    max-width: 90%;
}

.modal-body img {
    width: 100%;
    height: auto;
}

/* Oda Kartları */
.room-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.room-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

/* İletişim Formu */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #007bff !important;
}

/* Footer sosyal medya ikonları için özel kural */
footer .social-icons a:hover {
    color: #ffffff !important;
    background: var(--primary-color, #007bff) !important;
}

/* Sosyal Medya İkonları - Removed duplicate rule */

/* Sayfa Banner Stilleri */
.page-banner {
    height: 400px; /* Banner yüksekliği artırıldı */
    background-size: cover !important;
    background-position: center 60% !important; /* Resmi daha aşağıdan göster */
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin-top: -150px !important; /* Navbar yüksekliği kadar yukarı çek */
    padding-top: 100px !important; /* İçeriği aşağı it */
    z-index: 1; /* Navbar'ın altında kal */
}

.default-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6c757d 100%) !important;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-title {
    color: white !important;
    font-size: 3rem;
    font-weight: bold;
    margin-top: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    margin-top: -2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px; /* Mobile'da daha kısa */
        margin-top: -80px !important; /* Mobile navbar daha kısa */
        padding-top: 80px !important;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

/* Admin Panel Stilleri */
.admin-sidebar {
    min-height: 100vh;
    background: #343a40;
}

.admin-sidebar .nav-link {
    color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #495057;
}

.admin-sidebar .nav-link:hover {
    background: #495057;
    color: #fff;
}

.admin-sidebar .nav-link.active {
    background: #007bff;
    color: #fff;
}

.admin-content {
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .modal-dialog {
        max-width: 95%;
        margin: 10px;
    }
}
/* Otel İmkanları Kartları */
.facility-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.facility-card .card-img-top {
    transition: transform 0.3s ease;
}

.facility-card:hover .card-img-top {
    transform: scale(1.05);
}

.facility-card .card-body {
    padding: 1.5rem;
}

.facility-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.facility-card .card-title i {
    margin-right: 8px;
}

/* Bölüm Başlıkları */
.section-title {
    font-weight: 700;
    color: var(--text-color, #333);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color, #007bff);
    border: none;
    margin: 1rem auto 2rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .facility-card {
        margin-bottom: 2rem;
    }
    
    .facility-card .card-img-top {
        height: 180px !important;
    }
}
/* Rezervasyon Formu Stilleri */
.reservation-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reservation-form .form-label {
    font-weight: 600;
    color: var(--text-color, #333);
    margin-bottom: 0.5rem;
}

.reservation-form .form-control,
.reservation-form .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.reservation-form .btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Fiyat Hesaplama Kartı */
#priceCalculation {
    border: 2px solid var(--primary-color, #007bff);
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,123,255,0.1) 100%);
}

#priceCalculation .card-body {
    padding: 1.5rem;
}

#totalPrice {
    font-size: 1.25rem;
    color: var(--primary-color, #007bff) !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .reservation-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .reservation-form .btn-lg {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Admin Rezervasyon Tablosu */
.table th {
    background-color: var(--primary-color, #007bff);
    color: white;
    border: none;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
    border-color: #e9ecef;
}

.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Modal Düzenlemeleri */
.modal-header {
    background-color: var(--primary-color, #007bff);
    color: white;
}

.modal-header .btn-close {
    filter: invert(1);
}
/* Rezervasyon Admin Panel Stilleri */
.reservation-pending-long {
    background-color: #fff3cd !important;
    border-left: 4px solid #ffc107;
}

.reservation-confirmed {
    background-color: #d1edff !important;
    border-left: 4px solid #28a745;
}

.reservation-cancelled {
    background-color: #f8d7da !important;
    border-left: 4px solid #dc3545;
}

/* Hızlı İşlem Butonları */
.btn-group form {
    display: inline-block;
}

.btn-group .btn {
    margin-right: 2px;
}

/* Hatırlatma Test Sayfası */
.table-warning {
    background-color: #fff3cd !important;
}

.cron-command {
    background: #212529;
    color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

/* Rezervasyon Durumu Badge'leri */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.badge.bg-warning {
    color: #000 !important;
}

/* Modal İyileştirmeleri */
.modal-body h6 {
    color: var(--primary-color, #007bff);
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive Tablo */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}
/* Buton Yazıları Responsive Düzenlemeler */
@media (max-width: 576px) {
    /* Küçük ekranlarda buton yazılarını gizle, sadece ikonları göster */
    .btn-group-sm .btn {
        padding: 0.375rem 0.5rem;
    }
    
    .btn-group-sm .btn i {
        margin-right: 0;
    }
    
    /* Admin panelinde çok küçük ekranlarda yazıları gizle */
    @media (max-width: 480px) {
        .btn-group-sm .btn span {
            display: none;
        }
        
        .btn-group-sm .btn {
            padding: 0.25rem 0.5rem;
        }
    }
}

/* Buton İkon ve Yazı Aralığı */
.btn i {
    margin-right: 0.5rem;
}

.btn i:last-child {
    margin-right: 0;
}

/* Admin Panel Buton Düzenlemeleri */
.admin-action-btn {
    min-width: 80px;
    text-align: center;
}

/* Rezervasyon Hızlı İşlem Butonları */
.quick-action-btn {
    min-width: 70px;
    font-size: 0.875rem;
}

/* Responsive Tablo Butonları */
@media (max-width: 768px) {
    .table-responsive .btn-group {
        flex-direction: column;
    }
    
    .table-responsive .btn-group .btn {
        margin-bottom: 2px;
        border-radius: 0.375rem !important;
    }
}
/* Buton Yazı Rengi Düzeltmeleri */
.btn {
    color: #fff !important; /* Tüm butonlarda beyaz yazı */
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    color: var(--primary-color, #007bff) !important; /* Outline butonlarda renkli yazı */
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-success:hover,
.btn-outline-danger:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-light:hover,
.btn-outline-dark:hover {
    color: #fff !important; /* Hover durumunda beyaz yazı */
}

/* Spesifik buton renkleri */
.btn-primary {
    background-color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    color: #fff !important;
}

.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.btn-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important; /* Sarı butonlarda koyu yazı */
}

.btn-info {
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
    color: #fff !important;
}

.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

/* Outline butonlar için spesifik renkler */
.btn-outline-primary {
    color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
}

.btn-outline-success {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.btn-outline-danger {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.btn-outline-warning {
    color: #ffc107 !important;
    border-color: #ffc107 !important;
}

.btn-outline-info {
    color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.btn-outline-secondary {
    color: #6c757d !important;
    border-color: #6c757d !important;
}

/* Hover durumları */
.btn-outline-primary:hover {
    background-color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    color: #fff !important;
}

.btn-outline-success:hover {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.btn-outline-danger:hover {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.btn-outline-warning:hover {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important;
}

.btn-outline-info:hover {
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
    color: #fff !important;
}

.btn-outline-secondary:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

/* Link butonları için özel düzenleme */
a.btn {
    text-decoration: none !important;
}

a.btn:hover {
    text-decoration: none !important;
}

/* Buton içindeki ikonlar */
.btn i {
    color: inherit !important;
}

/* Admin paneli butonları */
.admin-action-btn,
.quick-action-btn {
    font-weight: 500;
    text-align: center;
}

/* Responsive buton yazıları görünürlüğü */
@media (max-width: 576px) {
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-sm {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
}

/* Kontrast artırma */
.btn-light {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #212529 !important;
}

.btn-dark {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
    color: #fff !important;
}
/* Buton Yazı Görünürlüğü İyileştirmeleri */
.btn {
    font-weight: 600 !important; /* Yazıları kalınlaştır */
    letter-spacing: 0.5px; /* Harf aralığı */
    text-shadow: none !important; /* Gölge kaldır */
}

/* Buton boyutlarına göre font ayarları */
.btn-lg {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

.btn-sm {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

/* Özel buton tipleri için yazı stilleri */
.btn-primary,
.btn-success,
.btn-danger,
.btn-info,
.btn-secondary,
.btn-dark {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important; /* Hafif gölge */
}

.btn-warning,
.btn-light {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important; /* Daha belirgin gölge */
}

/* Outline butonlar için */
.btn-outline-primary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-secondary,
.btn-outline-light,
.btn-outline-dark {
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Admin paneli özel butonları */
.admin-action-btn {
    min-width: 80px;
    font-weight: 600 !important;
}

.quick-action-btn {
    min-width: 70px;
    font-weight: 700 !important;
}

/* Buton focus durumu */
.btn:focus,
.btn:active {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

/* Buton disabled durumu */
.btn:disabled,
.btn.disabled {
    opacity: 0.65 !important;
    color: #6c757d !important;
}

/* Buton grup içindeki butonlar */
.btn-group .btn {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.btn-group .btn:last-child {
    border-right: none;
}

/* Navbar butonları */
.navbar .btn {
    margin: 0 0.25rem;
}

/* Card içindeki butonlar */
.card .btn {
    margin: 0.25rem 0;
}

/* Form butonları */
form .btn {
    margin-top: 0.5rem;
}

/* Tablo içindeki butonlar */
.table .btn {
    margin: 0.125rem;
    white-space: nowrap;
}
/* Adres Link Stilleri */
.address-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
}

.address-link:hover {
    color: var(--primary-color, #007bff) !important;
    text-decoration: none !important;
}

.address-link:hover .fa-external-link-alt {
    transform: translateX(2px);
    opacity: 1;
}

.address-link .fa-external-link-alt {
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.8em !important;
}

/* Footer'daki adres linkleri */
footer .address-link {
    color: rgba(255,255,255,0.75) !important;
}

footer .address-link:hover {
    color: #fff !important;
}

/* İletişim sayfasındaki adres linkleri */
.contact-address-link {
    color: var(--primary-color, #007bff) !important;
    font-weight: 500;
}

.contact-address-link:hover {
    color: var(--text-color, #333) !important;
}

/* Adres hover efekti */
.address-hover-effect {
    position: relative;
    display: inline-block;
}

.address-hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color, #007bff);
    transition: width 0.3s ease;
}

.address-hover-effect:hover::after {
    width: 100%;
}

/* Responsive adres linkleri */
@media (max-width: 768px) {
    .address-link {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .address-link .fa-external-link-alt {
        font-size: 0.7em !important;
    }
}

/* Tooltip benzeri efekt */
.address-link[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Footer Stilleri */
footer {
    margin-top: auto;
}

footer h5 {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

footer .list-unstyled a:hover {
    color: #fff !important;
}

/* Footer İletişim Bilgileri */
footer p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

footer p i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: var(--primary-color, #007bff);
}

/* Sosyal Medya İkonları */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin-right: 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color, #007bff);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    border-color: var(--primary-color, #007bff);
}

.social-icons a i {
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
}

/* Footer Alt Çizgi */
footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem 0;
}

/* Copyright Metni */
footer .text-center p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    margin-bottom: 0;
}
/* Sticky Navbar Stilleri */
.navbar.sticky-top {
    z-index: 1030;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Navbar link customization */
.navbar-nav .nav-link {
    color: var(--navbar-link-color) !important;
    font-size: var(--navbar-link-font-size) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Navbar scroll efekti - now controlled dynamically in header.php */

/* Navbar brand logo boyutu */
.navbar-brand img {
    transition: all 0.3s ease;
    max-height: var(--logo-height, 50px);
}

.navbar.scrolled .navbar-brand img {
    max-height: var(--logo-height-scrolled, 45px);
}

/* Navbar linklerinin scroll durumunda rengi */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color, #007bff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--navbar-link-color, #333) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color, #007bff) !important;
}

/* Mobile navbar toggle */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--text-color, #333);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Body padding top - sticky navbar için */
body {
    padding-top: 0;
}

/* Sayfa banner'ının sticky navbar ile uyumu - removed, now using negative margin */

/* Ana sayfa slider'ının sticky navbar ile uyumu */
.carousel {
    margin-top: 0;
}

/* Smooth scroll için */
html {
    scroll-behavior: smooth;
}

/* Mobile navbar collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}
/* Ana sayfa özel navbar stilleri */
body.homepage .navbar-brand img {
    max-height: var(--logo-height, 50px);
    height: var(--logo-height, 50px);
    transition: all 0.3s ease;
}

body.homepage .navbar.scrolled .navbar-brand img {
    max-height: var(--logo-height-scrolled, 45px);
    height: var(--logo-height-scrolled, 45px);
}

/* Ana sayfa slider ile navbar uyumu */
body.homepage .carousel {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Ana sayfa için navbar z-index */
body.homepage .navbar.sticky-top {
    z-index: 1030;
    position: sticky;
    top: 0;
}

/* Ana sayfa navbar scroll efekti */
body.homepage .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Video Container Stilleri */
.video-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

/* Video Özellik İkonları */
.video-feature {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.video-feature:hover {
    transform: translateY(-3px);
}

.video-feature i {
    transition: color 0.3s ease;
}

.video-feature:hover i {
    color: var(--primary-color) !important;
}

/* Video Responsive */
@media (max-width: 768px) {
    .video-container {
        margin: 0 1rem;
    }
    
    .video-feature {
        margin-bottom: 2rem;
    }
    
    /* Mobil video kontrolleri için düzeltme */
    .video-container video {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Video kontrollerinin tıklanabilir olması için */
    .video-container video::-webkit-media-controls {
        z-index: 2147483647 !important;
    }
    
    .video-container video::-webkit-media-controls-panel {
        z-index: 2147483647 !important;
    }
    
    .video-container video::-webkit-media-controls-play-button {
        z-index: 2147483647 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-appearance: media-play-button !important;
    }
}

/* Video Loading Placeholder */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Tıklamaları engelleme */
}

.video-container.loading::before {
    opacity: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Rezervasyon Butonları */
.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.5);
}

/* İmkan Detay Sayfası Rezervasyon Butonları */
.facility-reservation-buttons .btn {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 12px;
}

.facility-reservation-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.facility-reservation-buttons .btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Buton metinlerinin aynı boyutta görünmesi için */
.facility-reservation-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.facility-reservation-buttons .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .facility-reservation-buttons .btn {
        margin-bottom: 10px;
        min-height: 55px;
        font-size: 15px;
    }
}
/* Genel Buton İyileştirmeleri */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Form Stilleri */
.form-control {
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Kart Stilleri İyileştirme */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Breadcrumb Stilleri */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: transparent;
}

/* Badge Stilleri */
.badge {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Alert Stilleri */
.alert {
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    border: none;
}

/* Dinamik Ana Renk Butonları */
.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    color: #fff !important;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-primary {
    color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    background-color: var(--primary-color, #007bff) !important;
    border-color: var(--primary-color, #007bff) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Link renklerini de ana renge uygun hale getir */
a {
    color: var(--primary-color, #007bff) !important;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--primary-color, #007bff) !important;
    opacity: 0.8;
    text-decoration: underline;
}

/* Navbar aktif link rengi */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color, #007bff) !important;
}

/* Form kontrol odaklanma rengi */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color, #007bff) !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb, 0, 123, 255), 0.25) !important;
}

/* Özel buton stilleri - gradient efekti */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, var(--primary-color, #007bff) 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
    opacity: 0.9 !important;
}

/* Rezervasyon butonları için özel stil */
.reservation-btn {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, var(--primary-color, #007bff) 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 15px !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.reservation-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
    opacity: 0.95 !important;
    color: #fff !important;
}

/* Kart butonları */
.card .btn-primary {
    border-radius: 20px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.card .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}

/* Destinations Category Styling */
.destinations-category-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destinations-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px 10px 0 0;
	
}

.category-title {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.category-title i {
    color: #ffffff !important;
}

.category-content {
    /* Removed max-height and overflow to show all content */
}

.destination-item {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.destination-item:last-child {
    margin-bottom: 0;
}

.destination-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.destination-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-top: 4px;
}

.destination-distance {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.destination-link a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    font-size: 0.8rem;
}

.destination-link a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Responsive Destinations */
@media (max-width: 768px) {
    .destinations-category-card {
        margin-bottom: 20px;
    }
    
    .category-content {
        /* Removed max-height to show all content on mobile */
    }
}

/* About Section Learn More Button */
.about-learn-more-btn {
    border-radius: 50px !important;
    padding: 12px 35px !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.about-learn-more-btn:hover,
.about-learn-more-btn:focus,
.about-learn-more-btn:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
    opacity: 0.9 !important;
}

.about-learn-more-btn i {
    transition: transform 0.3s ease !important;
}

.about-learn-more-btn:hover i {
    transform: translateX(5px) !important;
}
