/*==========================================================
  Global ve Temel Stil Ayarları
==========================================================*/
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-color: #34495e;
    --light-color: #ecf0f1;
    --text-color: #2c3e50;
    --white: #ffffff;
    --shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --spacing-lg: 40px;
    --spacing-md: 20px;
    --spacing-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

ul {
    list-style: none;
}
/*==========================================================
  Header ve Navigasyon
==========================================================*/
.main-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO VE BAŞLIK */
.logo-container {
    display: flex;
    align-items: center;
}

.site-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    margin-right: 10px;
    flex-shrink: 0;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Masaüstü Navigasyon Menüsü */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 200px;
}

.main-nav .nav-links {
    display: flex;
    gap: 25px;
    position: relative;
}

.main-nav .nav-links li {
    position: relative;
}

.main-nav .nav-links > li > a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    border-radius: var(--border-radius);
}

.main-nav .nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-links > li > a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav .nav-links > li > a:hover::after {
    width: 100%;
}

/* Masaüstü Alt Menü (Submenu) Stilleri */
.main-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: 99;
    padding: 10px 0;
    border-top: 5px solid var(--primary-color);
}

.main-nav .has-submenu:hover > .submenu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.main-nav .submenu a {
    padding: 12px 20px;
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    border-radius: var(--border-radius);
    margin: 10px 16px;
}

.main-nav .submenu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    padding-left: 25px;
    transform: none;
}

/* İkinci Seviye Alt Menü (Şehirler) */
.main-nav .submenu .submenu {
    top: -10px;
    left: 100%;
    transform: translateX(10px);
    border-top: none;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.25);
}

.main-nav .submenu .has-submenu:hover > .submenu {
    transform: translateX(0);
}

/*==========================================================
  Mobil Menü Stilleri
==========================================================*/
/* Mobil menü ikonunu masaüstünde gizle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.menu-toggle .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    position: relative;
    transition: transform 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle .hamburger::before {
    top: -8px;
}

.menu-toggle .hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobil menü panelini varsayılan olarak gizle */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.site-logo-mobile {
    height: 60px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link, .has-submenu-mobile > span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.submenu-mobile {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
}

.submenu-mobile.active {
    display: block;
}

.submenu-mobile li a {
    font-size: 1.2rem;
    color: #555;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

/*==========================================================
  Arama Bölümü Stilleri
==========================================================*/
.search-icon-container {
    margin-left: var(--spacing-md);
    display: flex;
    align-items: center;
}

.search-icon-container a {
    font-size: 1.4rem;
    color: var(--white);
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: var(--border-radius);
}

.search-icon-container a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.search-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: 0.5s;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    position: relative;
    top: -50px;
    width: 80%;
    max-width: 700px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-overlay-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-overlay-form input[type="text"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: var(--text-color);
}

.search-overlay-form input[type="text"]::placeholder {
    color: #95a5a6;
}

.search-overlay-form button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.search-overlay-form button:hover {
    background-color: var(--dark-color);
}

.close-search-btn {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 4rem;
    color: var(--white);
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.close-search-btn:hover,
.close-search-btn:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.search-help-text {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-size: 1.1rem;
}
/*==========================================================
  Karta ve Grid Stilleri
==========================================================*/
/* Kart Gridleri */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: var(--spacing-lg);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
}

/* YENİLER Bölümü */
.latest-destinations-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.latest-destination-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--light-color);
}

.latest-destination-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-destination-image-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 25px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.latest-destination-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.country-tag {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.latest-destination-content {
    flex-grow: 0.3;
    display: flex;
    flex-direction: column;
}

.latest-destination-title-link {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.latest-destination-title-link:hover {
    color: var(--primary-color);
}

.latest-destination-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.latest-destination-description {
    font-size: 0.90rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Arama Sonuçları */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 3rem;
}

.result-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-item-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.result-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
}

.result-item-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.result-item-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.country-tag-small {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.result-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.result-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.2;
}

.result-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}
/*==========================================================
  Diğer Bölümler ve Bileşenler
==========================================================*/
/* Genel Başlıklar */
.section-heading {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #ccc;
}
.section-heading h2, .section-heading h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
}
.section-heading p {
    font-size: 1.1rem;
    color: #666;
    margin-top: var(--spacing-sm);
}
.section-sub-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.no-results-message {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--text-color-light);
}
/* "EN YENİLER" başlığı */
.section-heading-latest {
    font-size: 2.2rem; /* Daha büyük başlık */
    font-weight: 800; /* Çok kalın */
    color: var(--dark-color);
    text-transform: uppercase; /* BÜYÜK HARFLER */
    margin-bottom: 2.5rem !important; /* Altında daha fazla boşluk */
    letter-spacing: 1.5px; /* Harf aralığı */
    border-bottom: 3px solid var(--primary-color); /* Alt çizgi */
    display: inline-block; /* Çizginin sadece içeriği kadar uzaması için */
    padding-bottom: 10px; /* Çizgi ile yazı arası boşluk */
}


/* Faydalı Bağlantılar */
.external-links-block {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
}

.external-links-block .section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.external-link-card {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #007bff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.external-link-card i {
    margin-right: 8px;
    color: #007bff;
}

.external-link-card:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.external-link-card:hover i {
    color: #fff;
}
/* Hero Alanı */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/gb.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}
.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Şehir Detay Sayfası */
.city-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.city-hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.city-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.city-content-wrapper {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: var(--spacing-lg);
}

/* Genel İçerik Bölümü */
.content-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Ana Bölüm Başlıkları */
.section-title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

/* Metin Bölümleri */
.section-intro, .section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    text-align: justify;
}
/* Modal pencere için stil */
.modal-overlay {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000; /* Diğer tüm içeriklerin üzerinde */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.modal-overlay.visible {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: transparent;
    padding: 0;
}

#modalImage {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
}

/* Liste Bölümleri */
.section-list {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    color: #333;
}
.section-list li {
    margin-bottom: var(--spacing-sm);
}

/* Resim Bloğu */
.image-block-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.image-block-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.image-block-item {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-block-item img {
    width: 100%;
    height: auto;
    display: block;
}

.image-block-item figcaption {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
    color: var(--dark-color);
    background-color: var(--light-color);
    border-top: 1px solid #ddd;
    line-height: 1.5;
    text-align: center;
}

.no-content {
    text-align: center;
    font-style: italic;
    color: #777;
    padding: 50px 0;
}

/* Geri Dön Linki */
.back-link {
    text-align: center;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.back-link a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.back-link a:hover {
    background-color: #2980b9;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: var(--spacing-lg);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: var(--spacing-md) 0;
}

.main-footer p {
    margin: 0;
    flex-basis: auto;
}
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-md);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.contact-section {
    text-align: right;
    margin-top: var(--spacing-sm);
    flex-basis: auto;
}

.contact-section h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-section p {
    font-size: 0.95rem;
    color: var(--light-color);
    margin-bottom: var(--spacing-sm);
}

.contact-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-button:hover {
    background-color: #27ae60;
}

.contact-button i {
    margin-right: 8px;
}

/* Rota Bölümü */
.city-routes-section {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: var(--spacing-lg);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.route-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.route-title {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: var(--spacing-sm);
}

.route-map-container {
    width: 100%;
    height: 600px; /* Sabit bir yükseklik belirleyerek daha büyük görünmesini sağlar */
    border-radius: 8px;
    overflow: hidden; /* İçindeki içerik dışarı taşarsa gizler */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    /* İçindeki resmi veya iframe'i tam boyutlandırmak için */
    position: relative;
}

.route-map-container img,
.route-map-container iframe,
.route-map-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Çerçeve olmasını engeller */
}
.route-map-link-container {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.route-map-link-container p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.map-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.map-link-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.no-map-available {
    font-style: italic;
    color: #777;
    padding: 10px 0;
}
.route-steps {
    flex-grow: 1; /* Mevcut alanı kapla */
    display: flex;
    flex-direction: column;
}

.route-step {
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    position: relative;
}

.step-image-container {
    width: 100%;
    height: 450px; /* Yüksekliği 180px'ten 250px'e çıkardık */
    /* Veya daha esnek olması için: */
    /* max-height: 280px; */
    /* height: auto; */
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi konteynere sığdırırken oranını koru */
    display: block;
    transition: transform 0.3s ease;
}

.route-card:hover .step-image {
    transform: scale(1.05); /* Hover'da resmi hafif büyütme efekti */
}

/* Büyüteç İkonu Stili */
.magnify-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 2.5rem; /* İkon boyutunu büyüttük */
    padding: 10px 15px;
    border-radius: 50%;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease;
    pointer-events: none; /* İkonun tıklama olayını engellemesini önler */
}

.step-image-container:hover .magnify-icon {
    opacity: 1; /* Hover'da görünür yap */
}

.step-info {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.step-label {
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 5px;
}

.step-details {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* Yürüme İkonu (Basit bir Unicode karakter) */
.icon-walk::before {
    content: "\1F6B6"; /* Yürüyen adam emojisi */
    font-size: 1.2em;
    vertical-align: middle;
    color: var(--primary-color);
}

.step-divider {
    height: 1px;
    background-color: #ddd;
    margin: var(--spacing-sm) 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: var(--spacing-lg) auto;
    width: 80%; /* Ana içerikten ayırmak için */
}


/* Bu kısım görselin kapsayıcıya sığmasını sağlar */
.step-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi en boy oranını koruyarak doldurur */
    display: block;
}
/*==========================================================
  Medya Sorguları (Responsive Tasarım)
==========================================================*/

@media (max-width: 992px) {
    .main-nav .nav-links {
        display: none;
    }

    .main-nav .search-icon-container {
        margin-left: auto; /* Arama ikonunu sağa yasla */
    }

    .header-content {
        justify-content: space-between;
    }

    .main-header .main-nav {
        padding-right: 0;
    }

    .main-header .main-nav {
        justify-content: flex-end;
    }

    .menu-toggle {
        display: block;
    }

    .site-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2.5rem;
    }

    .city-hero p {
        font-size: 1.1rem;
    }

    .latest-destination-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .latest-destination-image-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .latest-destination-title {
        font-size: 1.8rem;
    }

    .latest-destinations-list {
        padding: 10px;
    }

    .result-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .result-item-image-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Mobil Menü Arka Plan Rengi */
@media (max-width: 992px) {
    .main-nav .nav-links.active {
        background-color: var(); /* Mavi renk için birincil rengi kullan */
    }
    .main-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links h3, .contact-section h3 {
        border-bottom: none;
    }

    .contact-section {
        text-align: center; /* Mobilde ortala */
    }
    .route-map-container {
        height: 500px; /* Mobil cihazlarda daha uygun bir yükseklik */
    }

}
@media (max-width: 576px) {

    .main-header{
        background-color: white;
    }
    .site-title {
        color: var(--dark-color); /* Başlığı mavi yap */
        display: block; /* Başlık gizlenmişse tekrar görünür yap */
    }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .section-heading h2, .section-heading h1 { font-size: 2rem; }
    .card-grid { grid-template-columns: 1fr; }
    .city-hero h1 { font-size: 2.5rem; }
    .city-hero p { font-size: 1.1rem; }
    .city-content-wrapper { padding: var(--spacing-md); }
    .section-title, .image-block-title { font-size: 1.8rem; }

    .site-logo {
        height: 60px;
    }

    .header-content {
        padding-right: var(--spacing-sm);
    }
    .main-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links h3, .contact-section h3 {
        border-bottom: none;
    }

    .contact-section {
        text-align: center; /* Mobilde ortala */
    }
}
