@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Quicksand:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Quicksand', sans-serif; }
body { background: #f8fafc; color: #334155; overflow-x: hidden; }
.container { width: 92%; max-width: 1350px; margin: 0 auto; position: relative; }

/* ==========================================
   1. HEADER & PREMIUM GÖSTERİŞLİ LOGO
   ========================================== */
.site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; text-decoration: none; }

@keyframes logoSwing { 0%, 100% { transform: rotate(-5deg) scale(1); } 50% { transform: rotate(5deg) scale(1.05); } }
.logo-img { height: 75px; margin-right: 18px; border-radius: 50%; animation: logoSwing 6s ease-in-out infinite; transform-origin: center; box-shadow: 0 5px 20px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.8); }

/* Gösterişli Kemer Yazısı (Yeni El Yazısı İmza Konsepti) */
.logo-text { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    margin-top: -5px; /* Hizalamayı dengelemek için */
}

.l-kemer { 
    font-family: 'Caveat', cursive; 
    font-size: 3.8rem; /* Puntoyu iyice büyüttük */
    font-weight: 700; 
    line-height: 0.75; 
    letter-spacing: 2px; 
    background: linear-gradient(90deg, #ffffff 0%, #facc15 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5)); /* Gradyan kesilmesin diye özel gölge */
    padding-bottom: 5px; 
    padding-right: 15px; /* İtalik fontun son harfi kesilmesin diye */
    transform: rotate(-3deg); /* Havalı, el yazısı hissini artırmak için hafif açı */
}

.l-bel { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.85rem; 
    letter-spacing: 9px; 
    font-weight: 800; 
    color: #e2e8f0; 
    margin-top: 10px; 
    text-shadow: 0 2px 8px rgba(0,0,0,0.6); 
    margin-left: 8px; /* Üstteki yazının eğimine uyum sağlaması için */
}

.header-right { display: flex; align-items: center; gap: 35px; }
.main-nav { display: flex; gap: 20px; }
.main-nav a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; transition: 0.3s; letter-spacing: 0.5px; }
.main-nav a:hover, .main-nav a.active { color: #84cc16; }

.header-tools { display: flex; align-items: center; gap: 15px; }
.search-btn { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }
.header-socials { display: flex; gap: 12px; margin: 0 10px; }
.header-socials a { color: #fff; font-size: 1.1rem; text-decoration: none; transition: 0.3s; }
.header-socials a:hover { color: #84cc16; }
.btn-fast { background: #84cc16; color: #fff; border: none; padding: 12px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 800; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 20px rgba(132, 204, 22, 0.3); }
.btn-fast:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(132, 204, 22, 0.5); }

/* --- MODERN RENKLİ HIZLI ERİŞİM KARTLARI --- */
.fast-access-modal { position: fixed; inset: 0; z-index: 99999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.4s ease; }
.fast-access-modal.active { opacity: 1; pointer-events: auto; }
.fa-overlay { position: absolute; inset: 0; background: rgba(0,26,77,0.95); backdrop-filter: blur(10px); }
.fa-content { position: relative; background: #fff; width: 95%; max-width: 900px; padding: 40px; border-radius: 35px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); transform: translateY(50px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fast-access-modal.active .fa-content { transform: translateY(0); }
.fa-close { position: absolute; top: 20px; right: 20px; background: #f1f5f9; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.5rem; color: #64748b; cursor: pointer; transition: 0.3s; }
.fa-close:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }
.fa-title { color: #0f172a; font-weight: 900; font-size: 1.5rem; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }

/* KART YERLEŞİMİ (Pill Design) */
.fa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; }
.fa-item { display: flex; align-items: center; gap: 15px; padding: 12px 20px; background: var(--bg); border-radius: 20px; color: #1e293b; font-weight: 800; font-size: 0.95rem; text-decoration: none; border: 2px solid transparent; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fa-item i { font-size: 1.8rem; color: var(--c); background: #fff; width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.06); transition: 0.3s; }
.fa-item:hover { background: #fff; border-color: var(--c); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); color: var(--c); }
.fa-item:hover i { transform: scale(1.15); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

/* --- YENİ NESİL MOBİL YAN MENÜ (SIDEBAR) --- */
.ms-overlay { position: fixed; inset: 0; background: rgba(0,15,40,0.7); backdrop-filter: blur(8px); z-index: 999998; opacity: 0; pointer-events: none; transition: 0.4s; }
.ms-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-sidebar { position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh; background: rgba(15,23,42,0.98); box-shadow: -15px 0 40px rgba(0,0,0,0.6); z-index: 999999; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); overflow-y: auto; padding: 30px 20px; display: flex; flex-direction: column; }
.mobile-sidebar.active { right: 0; }

.ms-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ms-logo { height: 50px; border-radius: 50%; border: 2px solid #84cc16; }
.ms-close { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
.ms-close:hover { background: #ef4444; transform: rotate(90deg); }

.ms-links { display: flex; flex-direction: column; gap: 8px; }
.ms-links a { color: #e2e8f0; text-decoration: none; font-size: 1.1rem; font-weight: 700; padding: 14px 15px; border-radius: 15px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.ms-links a i { font-size: 1.6rem; color: #84cc16; }
.ms-links a:hover, .ms-links a:active { background: rgba(255,255,255,0.08); color: #84cc16; transform: translateX(8px); }

.ms-divider { color: #64748b; font-size: 0.8rem; font-weight: 900; letter-spacing: 2px; margin: 25px 0 10px 10px; }
.ms-service { background: rgba(59, 130, 246, 0.15) !important; border: 1px solid rgba(59, 130, 246, 0.3); color: #fff !important; }
.ms-service i { color: #38bdf8 !important; }
.ms-service:hover { background: #3b82f6 !important; color: #fff !important; }

/* Mobilde Yeşil İkon Silindi - Sadece Hamburger Kaldı */
.mobile-controls { display: none; align-items: center; }
.mobile-menu-btn { background: transparent; border: none; color: #fff; font-size: 2.8rem; cursor: pointer; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); transition: 0.3s; }
.mobile-menu-btn:active { transform: scale(0.9); }

/* --- HERO BÖLÜMÜ --- */
.hero-section { height: 750px; position: relative; display: flex; align-items: center; padding-top: 60px; overflow: hidden; }
#heroBgVideo { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); z-index: 1; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,34,85,0.95) 0%, rgba(0,34,85,0.5) 70%, transparent 100%); mix-blend-mode: multiply; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 50px; position: relative; z-index: 3; align-items: center; }

.hero-text-box { max-width: 650px; }
.hero-script-title { font-family: 'Caveat', cursive; color: #84cc16; font-size: 3.8rem; transform: rotate(-3deg); margin-bottom: -15px; display: inline-block; }
.hero-main-title { color: #fff; font-size: 4.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero-script-kemer { font-family: 'Caveat', cursive; color: #facc15; font-size: 6rem; font-weight: 400; line-height: 0.8; }
.hero-desc { color: #e2e8f0; font-size: 1.25rem; font-weight: 600; margin-bottom: 35px; max-width: 450px; line-height: 1.6; }

.hero-buttons { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.btn-green { background: #84cc16; color: #fff; text-decoration: none; padding: 18px 35px; border-radius: 50px; font-weight: 800; display: flex; align-items: center; gap: 8px; font-size: 1rem; box-shadow: 0 10px 25px rgba(132,204,22,0.4); transition: 0.3s; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; text-decoration: none; padding: 16px 35px; border-radius: 50px; font-weight: 800; display: flex; align-items: center; gap: 8px; font-size: 1rem; transition: 0.3s; }
.btn-green:hover, .btn-outline:hover { transform: translateY(-5px); }
.btn-volume { background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4); color: #fff; width: 55px; height: 55px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; backdrop-filter: blur(5px); margin-left: 10px; }
.btn-volume.active { background: #84cc16; border-color: #84cc16; box-shadow: 0 5px 15px rgba(132,204,22,0.4); }

/* Duyurular Kutusu */
.hero-announcements { background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(10px); border-radius: 25px; padding: 30px; border: 1px solid rgba(255,255,255,0.1); color: #fff; }
.a-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 15px; margin-bottom: 20px; }
.a-title { color: #84cc16; font-weight: 800; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.a-all { color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 700; }
.a-item { display: block; text-decoration: none; color: #fff; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; transition: 0.3s; }
.a-item:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.a-item:hover { transform: translateX(8px); }
.a-date { font-size: 0.75rem; color: #cbd5e1; margin-bottom: 4px; font-weight: 600; }
.a-baslik { font-weight: 800; font-size: 1rem; margin-bottom: 4px; line-height: 1.4; color: #fff; }
.a-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: #84cc16; font-size: 1.2rem; }

/* --- 3. HIZLI İŞLEMLER --- */
.quick-actions-section { position: relative; z-index: 10; margin-top: -60px; margin-bottom: 50px; }
.quick-actions-box { background: #fff; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); padding: 30px; display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: center; }
.qa-title-area h2 { color: #1e3a8a; font-size: 1.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.qa-title-area p { color: #64748b; font-size: 0.9rem; line-height: 1.4; font-weight: 600; }
.qa-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.qa-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; text-decoration: none; padding: 25px 10px; border-radius: 20px; border: 1px solid #e2e8f0; transition: 0.3s; }
.qa-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.active-card { border-color: #84cc16; border-width: 2px; box-shadow: 0 10px 25px rgba(132, 204, 22, 0.15); background: #f7fee7; }
.qa-icon { font-size: 3rem; margin-bottom: 12px; }
.qa-card h3 { color: #0f172a; font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.qa-card p { color: #64748b; font-size: 0.8rem; line-height: 1.3; font-weight: 500; }

/* --- 4. ORTA BÖLÜM (Başkan, Haber, Banner) --- */
.middle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }

.mayor-card { background: #f8fafc; border-radius: 30px; padding: 40px 30px; display: flex; align-items: center; gap: 30px; text-decoration: none; color: inherit; box-shadow: 0 10px 30px rgba(0,34,85,0.05); transition: 0.4s; overflow: hidden; position: relative; border: 1px solid transparent; }
.mayor-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,34,85,0.1); border-color: #cbd5e1; background: #fff; }
.m-content { flex-grow: 1; position: relative; z-index: 2; width: 50%; }
.m-sub { font-size: 0.8rem; font-weight: 900; color: #3b82f6; margin-bottom: 8px; display: block; letter-spacing: 1px; }
.m-title { font-size: 2.2rem; color: #1e3a8a; font-weight: 900; margin-bottom: 15px; }
.m-content p { font-size: 1.15rem; color: #475569; line-height: 1.5; font-style: italic; font-weight: 600; margin-bottom: 25px; }
.m-name { font-size: 1.4rem; font-weight: 900; color: #0f172a; }
.m-task { font-size: 0.9rem; color: #64748b; font-weight: 700; }

.m-image-wrapper { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.m-frame-border { position: absolute; inset: -12px; border: 5px solid #84cc16; border-radius: 50%; border-right-color: #3b82f6; border-bottom-color: #3b82f6; transform: rotate(-45deg); transition: 0.6s; box-shadow: 0 0 20px rgba(132,204,22,0.2); }
.mayor-card:hover .m-frame-border { transform: rotate(135deg); border-width: 6px; }
.m-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 15px 35px rgba(0,0,0,0.2); border: 5px solid #fff; }

.news-widget { background: #fff; padding: 30px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,34,85,0.04); border: 1px solid #e2e8f0; }
.w-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.w-header h3 { font-size: 1.2rem; font-weight: 900; color: #0f172a; }
.w-link { font-size: 0.8rem; color: #84cc16; font-weight: 800; text-decoration: none; }
.news-row { display: flex; gap: 15px; text-decoration: none; margin-bottom: 15px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; transition: 0.3s; }
.news-row:hover { transform: translateX(8px); }
.news-row:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.n-img { width: 100px; height: 75px; border-radius: 12px; background-size: cover; background-position: center; flex-shrink: 0; }
.n-date { font-size: 0.75rem; color: #94a3b8; margin-bottom: 5px; font-weight: 700; }
.n-title { font-size: 1rem; font-weight: 800; color: #0f172a; line-height: 1.4; }

.promo-widget { border-radius: 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.promo-bg-fader { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity 0.8s ease-in-out; z-index: 1; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,58,138,0.95), rgba(30,58,138,0.4)); z-index: 2; }
.p-content { position: relative; z-index: 3; }
.p-content h3 { color: #fff; font-size: 2.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -0.5px; }
.p-content h3 span { font-family: 'Caveat', cursive; font-size: 3.5rem; font-weight: 400; color: #facc15; }
.btn-green-small { background: #84cc16; color: #fff; text-decoration: none; padding: 14px 25px; border-radius: 50px; font-weight: 800; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 20px rgba(132,204,22,0.4); transition: 0.3s; }
.btn-green-small:hover { transform: translateY(-4px); }

/* --- 5. HİZMETLERİMİZ / PROJELER --- */
.services-section { margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.srv-card { height: 160px; border-radius: 20px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 20px; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.06); transition: 0.4s; }
.srv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,34,85,0.15); }
.srv-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.srv-card:hover .srv-bg { transform: scale(1.1); }
.srv-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,34,85,0.9), transparent); opacity: 0.9; transition: 0.4s; }
.srv-card:hover .srv-overlay { background: linear-gradient(to top, rgba(132,204,22,0.95), rgba(0,34,85,0.4)); }
.srv-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; color: #fff; }
.srv-content i { font-size: 2rem; color: #84cc16; transition: 0.4s; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.srv-card:hover .srv-content i { color: #fff; transform: scale(1.15); }
.srv-content span { font-size: 0.95rem; font-weight: 800; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

/* --- 6. ALT BİLGİ ŞERİDİ --- */
.bottom-strip-section { margin-bottom: 60px; }
.bottom-strip { background: #1e3a8a; border-radius: 30px; padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 25px 50px rgba(0,34,85,0.2); }
.bs-item { display: flex; align-items: center; gap: 18px; color: #fff; border-right: 1px solid rgba(255,255,255,0.15); padding-right: 25px; }
.bs-item:last-child { border-right: none; padding-right: 0; }
.bs-item i { font-size: 2.8rem; color: #84cc16; }
.bs-item div { font-size: 0.9rem; line-height: 1.4; color: #cbd5e1; font-weight: 600; }
.bs-item strong { font-size: 1.15rem; font-weight: 900; color: #fff; }
.weather-item i { color: #facc15; }

/* ==========================================
   MOBİL İÇİN TAM ESTETİK DÜZENLEME
   ========================================== */
.mobile-controls { display: none; align-items: center; gap: 12px; }
.btn-fast-mobile { background: #84cc16; color: #fff; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(132,204,22,0.4); cursor: pointer; }
.mobile-menu-btn { background: transparent; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; }

/* ==========================================
   MOBİL İÇİN TAM ESTETİK DÜZENLEME
   ========================================== */
.mobile-controls { display: none; align-items: center; gap: 12px; }
.btn-fast-mobile { background: #84cc16; color: #fff; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(132,204,22,0.4); cursor: pointer; }
.mobile-menu-btn { background: transparent; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); transition: 0.3s; }
.mobile-menu-btn:active { transform: scale(0.9); }

@media (max-width: 1200px) {
    .header-right { display: none; }
    .mobile-controls { display: flex; }
    
    /* Hero alanını mobilde içeriğe göre uzayacak şekilde ayarladık */
    .hero-section { height: auto; min-height: 100vh; padding-bottom: 100px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 130px; gap: 40px; }
    .hero-text-box { margin: 0 auto; display: flex; flex-direction: column; align-items: center; width: 100%; }
    
    /* Mobil İçin Butonlar ve Ses Ayarı */
    .hero-buttons { width: 100%; display: flex; flex-direction: column; gap: 15px; position: relative; padding-bottom: 15px; }
    .btn-green, .btn-outline { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }
    .btn-volume { margin: 10px auto 0 auto; position: static; transform: none; }
    
    /* DUYURULAR MOBİLDE ARTIK GÖRÜNÜYOR */
    .hero-announcements { display: block; width: 100%; max-width: 600px; margin: 0 auto; text-align: left; }
    
    .quick-actions-box { grid-template-columns: 1fr; padding: 30px 20px; }
    .qa-title-area { text-align: center; margin-bottom: 20px; }
    .qa-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    .middle-grid { grid-template-columns: 1fr; }
    
    .mayor-card { flex-direction: column-reverse; text-align: center; padding: 40px 20px; }
    .m-content { width: 100%; }
    .m-image-wrapper { width: 200px; height: 200px; margin-bottom: 25px; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .bottom-strip { flex-direction: column; gap: 20px; align-items: flex-start; padding: 30px; }
    .bs-item { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; width: 100%; justify-content: flex-start; }
    .bs-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 600px) {
    .l-kemer { font-size: 2.8rem; padding-right: 10px; }
    .l-bel { font-size: 0.65rem; letter-spacing: 6px; margin-top: 6px; margin-left: 5px; }
    .logo-img { height: 55px; }
    
    .hero-main-title { font-size: 2.6rem; }
    .hero-script-kemer { font-size: 4.2rem; }
    
    .mobile-sidebar { width: 90%; }
}