/* Genel Ayarlar ve Premium Yazı Tipi */
@import url('https://googleapis.com');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* 1. Üst Tanıtım Alanı (Hero Banner) */
.hero-section {
    position: relative;
    background-image: url('https://unsplash.com'); /* Buraya güzel bir Gökçeada manzarası koyabilirsiniz */
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 95, 122, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Konteyner Düzeni */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 2. Modern Kart Izgarası */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

.hotel-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* Kartın Üzerine Gelindiğindeki Premium Efekt */
.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(26, 95, 122, 0.2);
}

/* Görsel Alanı Efekti */
.hotel-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel-card:hover .hotel-img {
    transform: scale(1.06); /* Görsel hafifçe büyür */
}

/* Bölge Rozeti */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffffff;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* 3. İçerik ve Detaylar Alanı */
.hotel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hotel-stars {
    color: #f59e0b; /* Altın sarısı yıldızlar */
    font-size: 0.95rem;
}

.hotel-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 600;
}

.hotel-title {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Özellik Etiketleri */
.features {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    background-color: #f1f5f9;
    color: #334155;
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.hotel-desc {
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* 4. Alt Bilgi ve Yumuşak Renkli Buton */
.hotel-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hotel-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

.btn-call {
    background: linear-gradient(135deg, #1a5f7a 0%, #0284c7 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: linear-gradient(135deg, #0284c7 0%, #1a5f7a 100%);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
    transform: translateY(-1px);
}

/* Mobil Cihaz Optimizasyonu */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-section {
        height: 280px;
    }
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    .hotel-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* Hero Alanındaki İlan Ver Butonu */
.btn-hero-action {
    display: inline-block;
    margin-top: 20px;
    background-color: #ff9f1c; /* Dikkat çekici turuncu */
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-action:hover {
    background-color: #ffbf69;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.6);
}

/* 5. Alt Kısımdaki Kayıt Ol Paneli */
.registration-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 70px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.registration-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

.registration-content p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
}

/* Adım Adım İlerleme Alanı */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.step-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    position: relative;
}

.step-number {
    background-color: #ff9f1c;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.step-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Kayıt Butonları */
.registration-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-register {
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-register.mail {
    background-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.btn-register.mail:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}
/* WhatsApp Özel Buton Tasarımı */
.btn-register.whatsapp {
    background-color: #25d366; /* Resmi WhatsApp yeşili */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-register.whatsapp:hover {
    background-color: #128c7e; /* Koyu yeşil hover efekti */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Mobilde Alan Düzenlemesi */
@media (max-width: 640px) {
    .registration-section {
        padding: 35px 20px;
    }
    .registration-content h2 {
        font-size: 1.6rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Öne Çıkan Premium Otel Kartı (Marmaros Özel) */
.featured-hotel {
    border: 2px solid #ff9f1c !important; /* Turuncu/Altın çerçeve */
    box-shadow: 0 15px 35px rgba(255, 159, 28, 0.1) !important;
}

/* Öne Çıkan Rozeti */
.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff9f1c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Çift Buton Yan Yana Düzeni */
.footer-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Web Sitesi Butonu */
.btn-website {
    display: inline-block;
    background-color: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.btn-website:hover {
    background-color: #e2e8f0;
    border-color: #94a3b8;
}

/* Efibadem Özel Canlı Kart Tasarımı */
.efibadem-special-card {
    border: 2px solid #ff477e !important; /* Canlı pembe/eflatun çerçeve */
    box-shadow: 0 15px 30px rgba(255, 71, 126, 0.15) !important;
}

/* Pembe Bölge Rozeti */
.badge.region-pink {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff477e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Lezzet Rozeti */
.badge-taste-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff70a6 0%, #ff477e 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255,71,126,0.3);
    z-index: 2;
}

/* Kartın İç Arka Planına Hafif Tatlı Bir Renk Geçişi */
.pink-gradient-bg {
    background: linear-gradient(to bottom, #ffffff 0%, #fff0f3 100%);
}

.hotel-stars-pink {
    color: #ff477e;
    font-size: 0.95rem;
}

.hotel-type-pink {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff70a6;
    font-weight: 700;
}

.hotel-title-pink {
    font-size: 1.4rem;
    color: #9d0208; /* Koyu canlı kırmızı/bordo başlık */
    font-weight: 700;
    margin-bottom: 14px;
}

/* Pembe Temalı Özellik Etiketleri */
.feature-tag-pink {
    background-color: #ffe5ec;
    color: #ff477e;
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.hotel-desc-pink {
    font-size: 0.92rem;
    color: #4f000b;
    margin-bottom: 24px;
    flex-grow: 1;
}

.border-pink {
    border-top: 1px solid #fbc4b6 !important;
}

.contact-item-pink {
    font-size: 0.8rem;
    color: #ff70a6;
    font-weight: 500;
    display: block;
}

/* Canlı Pembe Arama Butonu */
.btn-call-pink {
    background: linear-gradient(135deg, #ff70a6 0%, #ff477e 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(255, 71, 126, 0.3);
    transition: all 0.3s ease;
}

.btn-call-pink:hover {
    background: linear-gradient(135deg, #ff477e 0%, #ff70a6 100%);
    box-shadow: 0 6px 16px rgba(255, 71, 126, 0.5);
    transform: translateY(-1px);
}
/* Canlı Gurme Giriş Alanı Tasarımı */
.gurme-hero {
    position: relative;
    /* İştah kabartan renkli bir Ege sofrası veya Gökçeada gün batımı görseli harika gider */
    background-image: url('https://unsplash.com'); 
    background-size: cover;
    background-position: center;
    height: 420px; /* İçeriğin rahat sığması için biraz daha genişlettik */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* Canlı Turuncu, Pembe ve Derin Lacivert Geçişli Katman */
.hero-overlay-gurme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 71, 126, 0.75) 0%, rgba(255, 159, 28, 0.7) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

/* Küçük Canlı Etiket */
.hero-mini-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Vurgulu Kelime Efekti */
.text-highlight {
    color: #ffe5ec; /* Hafif pastel pembe tonunda parlayan vurgu */
    position: relative;
    display: inline-block;
}

/* Gurme Sayfasına Özel Işıl Işıl İlan Butonu */
.btn-hero-action-gurme {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(135deg, #ff477e 0%, #ff70a6 100%); /* Canlı pembe/fuşya tonları */
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 71, 126, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-action-gurme:hover {
    background: linear-gradient(135deg, #ff70a6 0%, #ff477e 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 71, 126, 0.6);
}

/* Mobilde Yazı Boyutlarının Otomatik Ayarlanması */
@media (max-width: 640px) {
    .gurme-hero {
        height: 380px;
    }
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 0.95rem !important;
    }
}
/* --- MAVİ KONSEPT (Balıkçılar) --- */
.accent-blue { border-top: 5px solid #1a5f7a; }
.badge-blue { background-color: #1a5f7a; color: #fff; }
.title-blue { color: #1a5f7a; font-weight: 700; }
.tag-blue { background-color: #e8f4f8; color: #1a5f7a; font-weight: 600; }
.btn-blue { background: #1a5f7a; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; }

/* --- TURUNCU KONSEPT (Meyhaneler & Et Lokantaları) --- */
.accent-orange { border-top: 5px solid #e65c00; }
.badge-orange { background-color: #e65c00; color: #fff; }
.title-orange { color: #e65c00; font-weight: 700; }
.tag-orange { background-color: #fff3eb; color: #e65c00; font-weight: 600; }
.btn-orange { background: #e65c00; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; }

/* --- YEŞİL KONSEPT (Kır Bahçeleri & Doğal Mekanlar) --- */
.accent-green { border-top: 5px solid #2a9d8f; }
.badge-green { background-color: #2a9d8f; color: #fff; }
.title-green { color: #2a9d8f; font-weight: 700; }
.tag-green { background-color: #eaf6f5; color: #2a9d8f; font-weight: 600; }
.btn-green { background: #2a9d8f; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; }
/* --- PEMBE KONSEPT (Kafeler & Tatlıcılar) --- */
.accent-pink { border-top: 5px solid #ff477e; }
.badge-pink { background-color: #ff477e; color: #fff; }
.title-pink { color: #ff477e; font-weight: 700; }
.tag-pink { background-color: #ffe5ec; color: #ff477e; font-weight: 600; }

/* JavaScript Lightbox Ekran Tasarımı */
.js-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Lightbox Açıldığında Aktif Olacak Sınıf */
.js-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

/* Büyük Resim Tasarımı */
.js-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.7);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.js-lightbox.active img {
    transform: scale(1);
}

/* Kapatma Butonu (Sağ Üst Köşe) */
.js-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

.js-lightbox-close:hover {
    color: #ff9f1c;
}

/* Genel Etiket Tasarımı arnaki */
.features span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

/* Renk Seçenekleri */
.feature-tag-pink {
    background-color: #FFF0F5;
    color: #DB7093;
    border: 1px solid #FFB6C1;
}

.feature-tag-orange {
    background-color: #FFF5EE;
    color: #D2691E;
    border: 1px solid #FFDAB9;
}

.feature-tag-green {
    background-color: #F0FFF0;
    color: #2E8B57;
    border: 1px solid #C1FFC1;
}

.feature-tag-indigo {
    background-color: #F0F8FF;
    color: #4682B4;
    border: 1px solid #B0E0E6;
}
/* ekseferler ayırıcı çizgi */
.announcement-divider {
    border-top: 3px solid #0056b3; /* Kalın mavi çizgi */
    margin: 20px 0;
    border-radius: 2px; /* Köşeleri hafif yumuşatır */
}
/* otel başvuru için kodlar*/
/* Başvuru Alanı Kapsayıcısı */
.registration-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

/* Başlık ve Metin Stilleri */
.registration-title {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #333333;
    font-weight: 600;
}

.registration-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Adım Adım Liste Yapısı */
.registration-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.registration-steps li {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

/* Numaralı Görsel İkonlar */
.step-num {
    background: #2ec4b6;
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Orijinal Butonların Esnek Düzeni */
.registration-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-register {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-register:hover {
    transform: translateY(-2px);
}

/* Buton Renkleri */
.btn-register.mail {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.btn-register.mail:hover {
    background: #e2e8f0;
}

.btn-register.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-register.whatsapp:hover {
    background: #20ba5a;
}
/* Gökçeada Filtre Kutusu Lokal CSS */
.ada-filtre-alani {
    padding: 15px !important;
    background: #ffffff !important;
    display: block !important;
    clear: both !important;
    box-sizing: border-box !important;
}

.ada-filtre-alani label {
    display: block !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    color: #333333 !important;
    font-size: 14px !important;
}

.ada-filtre-alani select {
    width: 100% !important;
    height: 42px !important;
    padding: 0 10px !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    background-color: #fafafa !important;
    color: #333333 !important;
    display: block !important;
    box-sizing: border-box !important;
}
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstünde 3 eşit kolon */
    gap: 20px; /* Kartlar arası boşluk */
}

/* Mobil cihazlar için tek kolon yapma */
@media (max-width: 768px) {
    .hotel-grid {
        grid-template-columns: 1fr;
    }
}