body, html {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    scroll-behavior: smooth;
}

:root {
    --deep-blue: #09203F;
    --beige: #E6D5C3;
    --off-white: #F8F9FA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; /* Sayfanın sağa/sola kayıp beyaz boşluk açmasını engeller */
    width: 100%;
}

header {
    position: absolute; top: 0; width: 100%; padding-top: 40px; z-index: 10;
}

.header-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.logo { 
    font-family: 'Playfair Display', serif; font-size: 2.5rem; letter-spacing: 5px; color: var(--beige); 
}

nav { display: flex; gap: 40px; }
nav a { 
    color: white; text-decoration: none; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--beige); }

.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* ŞU İKİ SATIR BOŞLUĞU KESER: */
    overflow: hidden;
    margin: 0 !important;
}

.slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
    filter: blur(5px) brightness(0.6); /* Blur ve koyuluk */
}
.slide.active { opacity: 1; }

.hero-content { text-align: center; }
h1 { font-family: 'Playfair Display', serif; font-size: 5rem; margin-bottom: 15px; color: var(--off-white); }
p { font-size: 1.2rem; font-weight: 300; letter-spacing: 3px; color: var(--beige); }
/* Hero Content Düzenlemesi */
.hero-content { 
    text-align: center; 
    z-index: 2;
    padding: 20px;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Glassmorphism Ayarları */
    background: rgba(255, 255, 255, 0.05); /* Çok hafif beyazlık */
    backdrop-filter: blur(12px); /* Buzlu cam etkisi */
    -webkit-backdrop-filter: blur(12px); /* Safari desteği */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Çok ince sınır */
    
    padding: 50px 80px;
    border-radius: 20px; /* Kenarları yumuşattık */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Derinlik hissi */
    
    /* Animasyonlu giriş */
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.subtitle {
    color: var(--beige);
    letter-spacing: 6px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 5rem; 
    letter-spacing: 2px;
    color: var(--off-white);
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    margin: 0;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--beige);
    margin: 25px 0;
}

p { 
    font-size: 1.1rem; 
    font-weight: 300; 
    letter-spacing: 4px; 
    color: var(--off-white);
    text-transform: uppercase;
}
.hero-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 50px 80px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Animasyonu ekliyoruz */
    animation: breathing 6s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); } /* Çok hafif bir büyüme */
}
.weather-box {
    position: absolute;
    top: 30px;
    right: 5%;
    /* Cam efekti */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* İnce, parlayan kenarlık */
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* 1. Işıltı: Kutunun arkasına hafif bir gölge ekleyelim */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(255, 255, 255, 0.2);
    
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    z-index: 20;
    
    /* Yazıların hafif parlaması için */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

/* Fareyle üzerine gelince parıltıyı artır */
.weather-box:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.temp {
    font-weight: 700;
    font-size: 1.1rem;
}
/* --- REZERVASYON BUTONU (SOL YAN) --- */
/* 1. Tüm butonların temel stili (Artık sadece görünüm, konum değil!) */
.reserve-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #2c3e50;
    color: #2c3e50;
    cursor: pointer;
    transition: 0.3s;
}

/* 2. Sadece sol tarafta durmasını istediğin butonun özel konumu */
.hero-btn {
    position: fixed !important; /* Her şeyi ezip geçsin */
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important; /* Her şeyin üstünde olsun */
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0 15px 15px 0;
    color: white;
    padding: 20px 15px;
    cursor: pointer;
}
    
    /* Yazıyı dikey yapma */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    
    /* Görünüm */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 15px 15px 0; /* Sağ kenarları yuvarlak yap */
    color: white;
    padding: 20px 15px;
    
    /* Hizalama zorlaması */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Tıklanabilirliği ve geçişi koru */
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Hover efekti (İstiyorsan buraya da ekleyebilirsin) */
.hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.reserve-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    padding-left: 20px;
}

/* Modal Arka Plan - Okyanus Temalı */
.modal {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    /* Arka planı koyu ama şeffaf yapıyoruz (R, G, B, Opaklık) */
    /* Bu sayede arkadaki sayfanın görüntüsü alttan belli olur */
    background: rgba(15, 32, 39, 0.4); /* Okyanus mavisi tonunda yarı saydam */ 
    
    /* Burası önemli: Arkadaki her şeyi bulanıklaştırır */
    backdrop-filter: blur(15px); 
    
    z-index: 1000;
}

/* Modal Kutusu */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Modal Başlık ve Metin */
.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.modal-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Kapatma Butonu */
.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
    font-size: 30px;
    color: white;
    opacity: 0.7;
}

.close-btn:hover { opacity: 1; }

/* Form Yapısı */
#reserve-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Giriş Kutucukları */
#reserve-form input {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#reserve-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

/* Gönder Butonu */
.submit-btn {
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
#reserve-form label {
    text-align: left;
    margin-bottom: -10px;
    margin-top: 10px;
    display: block;
}
#success-message {
    display: none; /* JavaScript ile açılacak */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Aynı blur efekti ve arka plan */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    z-index: 1001; /* Rezervasyon modalının bir üst katmanı */
}

/* Teşekkürler kutusunun içindeki içeriği rezervasyon modalı ile aynı yapıyoruz */
#success-message .modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 30px;
    color: white;
    text-align: center;
}
/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Sayfa genelini beyaza çekiyoruz */
    font-family: 'Manrope', sans-serif;
}

/* Elite Başlıklar - Güncellenmiş Hali */
.elite-title {
    text-align: center;         /* Yazıyı ortala */
    display: block;             /* Yanındakilere izin verme, tam genişlik kapla */
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-style: italic;
    color: #faf9f6;
    margin: 100px auto 50px;    /* Sağdan soldan otomatik boşlukla ortala */
    letter-spacing: 2px;
    border-bottom: 2px solid #faf9f6;
    width: fit-content;         /* Çizginin yazı kadar olmasını sağlar */
    padding-bottom: 20px;
}

/* Izgara ve Kartlar */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.feature-card:hover { transform: translateY(-10px); border-color: #faf9f6; }

/* Vurgu Yazısı */
.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    padding: 60px 40px;
    border-left: 4px solid #faf9f6;
    max-width: 900px;
    margin: 80px auto;
    background: rgba(255,255,255,0.05);
}

.main-desc { text-align: center; font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: auto; }
/* Odalar Bölümü Genel Tasarımı */
.rooms-section {
    background-color: #ffffff !important; /* Arka plan kesinlikle beyaz */
    color: #333333;
    padding: 100px 20px;
}

/* Oda satırı (Görsel + Metin) */
.room-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0; /* Ayırıcı çizgi */
    padding-bottom: 60px;
}

/* Görsel alanı */
.room-image {
    width: 400px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Bilgi alanı */
.room-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.room-specs {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.room-desc {
    line-height: 1.6;
    margin-bottom: 20px;
}

.reserve-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #2c3e50;
    color: #2c3e50;
    cursor: pointer;
    transition: 0.3s;
}

.reserve-btn:hover {
    background: #2c3e50;
    color: #ffffff;
}
.facility-section {
    background: linear-gradient(rgba(10, 20, 40, 0.7), rgba(10, 20, 40, 0.7)), url('deniz-arka-plan.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff; /* Buradaki yazılar deniz görseli üzerinde beyaz olsun */
    padding: 100px 20px;
}
.rooms-section {
    background-color: #ffffff;
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.room-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eeeeee;
}

/* Zig-Zag Düzeni: Çift numaralı odalar görseli sağa alır */
.room-row:nth-child(even) {
    flex-direction: row-reverse;
}

.room-image {
    width: 50%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.room-details { width: 50%; }

.room-details h3 { font-size: 2.2rem; color: #2c3e50; margin: 0 0 10px 0; }

.room-specs { color: #888; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }

/* İkonik Liste */
.room-features {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #444;
    font-size: 0.9rem;
}

.room-desc { color: #555; line-height: 1.6; margin-bottom: 20px; }

/* Fiyat ve Buton */
.room-footer { display: flex; align-items: center; gap: 30px; }

.room-price { font-size: 1.5rem; font-weight: bold; color: #2c3e50; }

.reserve-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #2c3e50;
    color: #2c3e50;
    cursor: pointer;
    transition: 0.3s;
}

.reserve-btn:hover { background: #2c3e50; color: #ffffff; }
.rooms-title {
    text-align: center;
    font-size: 4rem; 
    color: #2c3e50; /* Koyu lacivert/gri */
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    margin-bottom: 70px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-section {
    background-color: #ffffff; /* Beyaz zemin */
    padding: 100px 20px;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c3e50; /* Koyu lacivert (okunur olması için) */
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555; /* Biraz daha yumuşak bir renk */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.restoran-ozel {
    display: flex;
    height: 500px;
    background-color: #ffffff; 
    margin: 80px auto;       
    max-width: 1100px;       
    
    /* Çerçeve ve Gölge Efektleri */
    border: 1px solid #e0e0e0;   
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-radius: 8px;      
    overflow: hidden;        
}

.res-sol {
    flex: 1;
    background: url('restoran.jpg') center/cover; /* Burayı kendi dosya isminle kontrol et */
}

.res-sag {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.res-baslik {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 25px;
}

.res-sag p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.res-ozellikler span {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}
/* GALERİ BÖLÜMÜ (3D Tasarım) */
.gallery-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
    position: relative;
    overflow: hidden; 
    
    /* İŞTE BU KOD BOŞLUĞU YOK EDECEK: */
    margin-bottom: 0 !important; 
    padding-bottom: 20px !important; 
}

/* Galeri başlığı (Odalar ile aynı stil) */
.gallery-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom:50px;
}

/* Ana taşıyıcı - Tam orta hizalama */
.carousel-container {
    position: relative;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto; /* Sayfanın ortasına çiviler */
    perspective: 1000px; /* 3D derinlik */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Resim kutuları */
.carousel-item {
    position: absolute;
    left: 50%;
    margin-left: -200px; /* Kutunun genişliğinin yarısı kadar geri çek */
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); /* Daha akıcı animasyon */
    opacity: 0;
    z-index: 0;
}

/* Ortadaki resim */
.carousel-item.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0) scale(1.1); /* Önde ve büyük */
}

/* Sağdaki resim */
.carousel-item.next {
    opacity: 0.7;
    z-index: 5;
    transform: translateX(250px) scale(0.85) rotateY(-15deg);
}

/* Soldaki resim */
.carousel-item.prev {
    opacity: 0.7;
    z-index: 5;
    transform: translateX(-250px) scale(0.85) rotateY(15deg);
}

/* Ok tuşları (Galeri sınırları içinde) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

.prev-btn { left: 50px; }
.next-btn { right: 50px; }
.neon-shine {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    
    /* Gradyan Renkler */
    background: linear-gradient(90deg, #2c3e50, #f1c40f, #2c3e50);
    background-size: 200% 100%;
    
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* Animasyon */
    animation: shine 4s linear infinite;
    
    /* GÖLGE EFEKTİ (Dışa doğru yumuşak altın parıltısı) */
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.3), 
                 0 0 20px rgba(241, 196, 15, 0.2);
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
    
    /* Gradyan Renkler (Parlak metalik/altın tonları) */
    background: linear-gradient(90deg, #2c3e50, #f1c40f, #2c3e50);
    background-size: 200% 100%;
    
    /* Yazıyı gradyan ile doldur */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* Animasyon */
    animation: shine 4s linear infinite;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* Restoran başlığının hem kendi stillerini koruyalım hem parlamayı ekleyelim */
.res-baslik.neon-shine {
    /* Zaten .neon-shine içinde tanımladığımız özellikleri alır */
    font-size: 3rem;
    font-family: 'Playfair Display', serif; /* Fontunu koruyoruz */
    margin-bottom: 25px;
}
.reservation-footer-section {
    background: linear-gradient(135deg, #09203F, #1a3a5a);
    padding: 80px 20px;
    margin: 0; /* Eğer burada 'margin-top' varsa 0 yap */
    color: white;
    text-align: center;
}

.res-container {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-footer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--beige);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-item span { font-size: 2rem; display: block; margin-bottom: 10px; }
.info-item p { font-size: 1.1rem; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

/* Rezervasyon butonu - Bölümün içindeki versiyon */
.reservation-footer-section .reserve-btn {
    background: transparent;
    border: 1px solid var(--beige);
    color: var(--beige);
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.reservation-footer-section .reserve-btn:hover {
    background: var(--beige);
    color: var(--deep-blue);
}
footer {
    background-color: #09203F; /* Lacivert temanın devamı */
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--beige);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--beige);
}
/* Galeri altındaki boşluğu tamamen yok et */
.reservation-footer-section {
    margin-top: -30px !important; /* Eğer boşluk devam ederse bu rakamı -50px yap */
    padding-top: 50px !important; 
}
.no-margin {
    margin-top: 0 !important;
    padding-top: 50px !important; /* Burayı ihtiyaca göre 20-50 arası ayarla */
}
#yukariCikBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    
    /* Boyut ve Şekil */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    
    /* Tasarım */
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #f1c40f; /* Altın rengi simge */
    border: 2px solid #f1c40f;
    cursor: pointer;
    
    /* Görünüm */
    font-size: 24px;
    display: none; 
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    
    /* Hizalama */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Üzerine gelince efekt */
#yukariCikBtn:hover {
    transform: scale(1.1);
    background: #f1c40f;
    color: #2c3e50;
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

