/*****
Theme Name: Meditasyon Akademi
Description: Modern meditation academy website
Version: 1.0
Author: Your Name
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');


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


}
:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #e94560;
--accent-light: #ff6b8a;
--gold: #f4d03f;
--pearl: #faf4f4;
--glass: rgba(255, 255, 255, 0.1);
--glass-border: rgba(255, 255, 255, 0.2);
--text-primary: #2c3e50;
--text-secondary: #7f8c8d;
--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
--gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
--cosmic-bg: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 70%, #0f0f23 100%);
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text-primary);
overflow-x: hidden;
background: var(--cosmic-bg);
}
/* Header Styles */
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1.2rem 2rem;
background: rgba(26, 26, 46, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
transition: all 0.3s ease;
height: 90px; /* Daha büyük header yüksekliği */
display: flex;
align-items: center;
}
.header-container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
width: 100%;
height: 100%;
gap: 1rem;
}
/* Categories Dropdown - Sol taraf */
.categories-dropdown {
justify-self: start;
position: relative;
z-index: 10;
}
.categories-toggle {
display: flex;
align-items: center;
gap: 0.4rem;
background: rgba(255, 255, 255, 0.1);
color: white;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 0.6rem 1rem;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
backdrop-filter: blur(10px);
height: 40px; /* Sabit yükseklik */
}
.categories-toggle:hover {
background: rgba(255, 255, 255, 0.15);
color: var(--gold);
border-color: rgba(244, 208, 63, 0.3);
}
.categories-icon {
width: 16px;
height: 16px;
fill: currentColor;
transition: transform 0.3s ease;
flex-shrink: 0;
}
.categories-dropdown.active .categories-icon:last-child {
transform: rotate(180deg);
}
.categories-menu {
position: absolute;
top: calc(100% + 0.5rem);
left: 0;
background: rgba(26, 26, 46, 0.98);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 1rem 0;
min-width: 280px;
max-height: 400px;
overflow-y: auto;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
}
.categories-dropdown.active .categories-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.categories-menu::-webkit-scrollbar {
width: 4px;
}
.categories-menu::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
}
.categories-menu::-webkit-scrollbar-thumb {
background: var(--gold);
border-radius: 2px;
}
.category-link {
display: flex;
align-items: center;
gap: 0.8rem;
padding: 0.8rem 1.5rem;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.9rem;
}
.category-link:hover {
background: rgba(244, 208, 63, 0.1);
color: var(--gold);
padding-left: 2rem;
}
.category-icon-small {
font-size: 1.2rem;
width: 20px;
text-align: center;
flex-shrink: 0;
}
.category-name {
flex: 1;
font-weight: 400;
}
.category-count {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.1);
padding: 0.2rem 0.5rem;
border-radius: 10px;
min-width: 24px;
text-align: center;
flex-shrink: 0;
}
/* Logo Styles - Ortada */
.site-logo {
justify-self: center;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
}
.site-logo:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(244, 208, 63, 0.15);
}
/* Custom Logo (Yüklenen logo için) */
.custom-logo {
max-height: 80px; /* ESKİ BOYUT - Büyük logo */
width: auto;
transition: all 0.3s ease;
filter: drop-shadow(0 4px 15px rgba(244, 208, 63, 0.3));
}
.custom-logo:hover {
transform: scale(1.05);
filter: drop-shadow(0 6px 20px rgba(244, 208, 63, 0.5));
}
.logo-text {
font-family: 'Crimson Text', serif;
font-size: 2rem; /* ESKİ BOYUT - Büyük font */
font-weight: 600;
color: var(--gold);
text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
transition: all 0.3s ease;
white-space: nowrap;
}
/* Logo sadece text olduğunda */
.site-logo:has(.logo-text:only-child) .logo-text {
font-size: 2.2rem; /* ESKİ BOYUT - Büyük font */
background: linear-gradient(45deg, var(--gold), var(--accent-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.site-logo:hover .logo-text {
text-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
}
/* Header sosyal medya ikonları - Sağ taraf */
.header-social {
justify-self: end;
display: flex;
gap: 0.8rem;
z-index: 10;
}
.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 50%;
transition: all 0.3s ease;
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.2);
flex-shrink: 0;
}
.social-icon:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.instagram-icon:hover {
box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}
.email-icon:hover {
box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}
.social-icon svg {
transition: transform 0.3s ease;
width: 22px;
height: 22px;
flex-shrink: 0;
}
.social-icon:hover svg {
transform: scale(1.1);
}
/* Navigation gizle desktop'ta çünkü sosyal medya ikonları var */
.main-navigation {
display: none;
}
/* Hero Section */
.hero-section {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
background: var(--cosmic-bg);
color: white;
}
.hero-content {
max-width: 900px;
z-index: 10;
animation: fadeInUp 1.5s ease-out;
}
.hero-content h1 {
font-family: 'Crimson Text', serif;
font-size: 4.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
background: linear-gradient(45deg, var(--gold), var(--accent-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 2rem;
opacity: 0.9;
font-weight: 300;
color: rgba(255, 255, 255, 0.8);
}
.hero-description {
font-size: 1.1rem;
margin-bottom: 3rem;
opacity: 0.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
}
/* Categories Grid */
.categories-section {
padding: 6rem 2rem;
background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(250, 244, 244, 1) 100%);
}
.container {
max-width: 1400px;
margin: 0 auto;
}
.section-title {
text-align: center;
margin-bottom: 4rem;
}
.section-title h2 {
font-family: 'Crimson Text', serif;
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-title p {
font-size: 1.2rem;
color: #e8e8e8;
max-width: 700px;
margin: 0 auto;
line-height: 1.8;
font-weight: 500;
}
.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
margin-top: 4rem;
}
.category-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 25px;
padding: 3rem;
text-align: left;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.category-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.category-icon {
width: 70px;
height: 70px;
background: var(--gradient-1);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
font-size: 1.8rem;
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.category-card h3 {
font-family: 'Crimson Text', serif;
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--text-primary);
line-height: 1.3;
}
.category-features {
list-style: none;
margin: 1rem 0 2rem 0;
padding: 0;
}
.category-features li {
padding: 0.3rem 0;
color: var(--text-secondary);
position: relative;
padding-left: 1.5rem;
font-size: 0.9rem;
}
.category-features li::before {
content: '✦';
position: absolute;
left: 0;
color: var(--accent);
}
.category-cta {
display: inline-flex;
align-items: center;
color: var(--accent);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
gap: 0.5rem;
}
.category-cta:hover {
gap: 1rem;
color: var(--accent-light);
}
.category-cta::after {
content: '→';
transition: transform 0.3s ease;
}
.category-cta:hover::after {
transform: translateX(5px);
}
/* Son Makaleler Kayan Bölüm */
.latest-posts-section {
padding: 4rem 0;
background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%);
overflow: hidden;
position: relative;
margin-top: 80px;
}
.latest-posts-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
}
.latest-posts-header {
text-align: center;
margin-bottom: 3rem;
}
.latest-posts-header h3 {
font-family: 'Crimson Text', serif;
font-size: 3rem;
color: white !important;
text-shadow: 0 0 30px rgba(244, 208, 63, 0.6);
margin-bottom: 1rem;
background: linear-gradient(45deg, var(--gold), var(--accent-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.posts-slider-container {
position: relative;
overflow: hidden;
mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
-webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.posts-track {
display: flex;
gap: 2rem;
transition: transform 0.5s ease;
width: fit-content;
}
.post-card {
flex: 0 0 350px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.post-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.post-image {
height: 200px;
overflow: hidden;
position: relative;
}
.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.post-card:hover .post-image img {
transform: scale(1.05);
}
.default-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
background: var(--gradient-1);
color: white;
}
.post-content {
padding: 1.5rem;
}
.post-category {
display: inline-block;
background: var(--accent);
color: white;
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 500;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.post-content h4 {
font-family: 'Crimson Text', serif;
font-size: 1.3rem;
margin-bottom: 0.8rem;
line-height: 1.3;
}
.post-content h4 a {
color: var(--text-primary);
text-decoration: none;
transition: color 0.3s ease;
}
.post-content h4 a:hover {
color: var(--accent);
}
.post-excerpt {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 1rem;
}
.post-meta {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding-top: 1rem;
}
.post-date {
color: var(--text-secondary);
font-size: 0.85rem;
}
.read-more {
color: var(--accent);
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.read-more:hover {
color: var(--accent-light);
transform: translateX(3px);
}
/* Slider Navigation Arrows */
.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(26, 26, 46, 0.9);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
backdrop-filter: blur(10px);
}
.slider-nav:hover {
background: rgba(244, 208, 63, 0.9);
border-color: var(--gold);
transform: translateY(-50%) scale(1.1);
}
.slider-nav.prev {
left: 1rem;
}
.slider-nav.next {
right: 1rem;
}
.slider-nav svg {
width: 24px;
height: 24px;
color: white;
transition: color 0.3s ease;
}
.slider-nav:hover svg {
color: var(--primary);
}
.slider-nav:disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-1);
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 1000;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}
.back-to-top svg {
width: 24px;
height: 24px;
color: white;
transition: transform 0.3s ease;
}
.back-to-top:hover svg {
transform: translateY(-2px);
}
/* Article Styles */
.article-content {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.article-content h1,
.article-content h2,
.article-content h3 {
font-family: 'Crimson Text', serif;
color: var(--text-primary);
margin-bottom: 1rem;
}
.article-content p {
margin-bottom: 1.5rem;
line-height: 1.8;
color: var(--text-secondary);
}
/* Footer */
.site-footer {
background: var(--primary);
color: white;
padding: 4rem 2rem 2rem;
margin-top: 4rem;
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-section h4 {
font-family: 'Crimson Text', serif;
font-size: 1.4rem;
color: var(--gold);
margin-bottom: 1rem;
}
.footer-section p {
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
}
.footer-social {
display: flex;
gap: 1rem;
}
.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
transition: all 0.3s ease;
}
.social-link:hover {
background: var(--gold);
transform: translateY(-2px);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--gold);
}
.footer-bottom {
text-align: center;
color: rgba(255, 255, 255, 0.6);
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Logo loading animation */
@keyframes logoGlow {
0%, 100% {
filter: drop-shadow(0 4px 20px rgba(244, 208, 63, 0.5));
}
50% {
filter: drop-shadow(0 8px 35px rgba(244, 208, 63, 0.8));
}
}
.custom-logo {
animation: logoGlow 3s ease-in-out infinite;
}
/* Responsive */
@media (max-width: 768px) {
/* Header mobil düzeni */
.site-header {
padding: 0.8rem 1rem;
height: 75px; /* Mobilde de büyük header */
}
.header-container {
grid-template-columns: auto 1fr auto;
gap: 0.5rem;
max-width: 100%;
}
/* Kategoriler butonu mobilde daha küçük */
.categories-toggle {
padding: 0.4rem 0.6rem;
font-size: 0.75rem;
height: 35px;
white-space: nowrap;
}
.categories-toggle span {
display: none; /* "Kategoriler" yazısını gizle */
}
.categories-icon {
width: 14px;
height: 14px;
}
/* Logo mobilde ESKİ BOYUTLARDA KALACAK */
.site-logo {
border-radius: 12px;
}
.custom-logo {
max-height: 65px; /* ESKİ BOYUTA YAKIN */
}
.logo-text {
font-size: 1.6rem; /* ESKİ BOYUTA YAKIN */
}
/* Sosyal medya ikonları mobilde görünür ve küçük */
.header-social {
gap: 0.4rem;
}
.social-icon {
width: 35px;
height: 35px;
}
.social-icon svg {
width: 18px;
height: 18px;
}
/* Categories dropdown mobilde daha küçük */
.categories-menu {
min-width: calc(100vw - 2rem);
left: 0;
right: auto;
font-size: 0.85rem;
}
.category-link {
padding: 0.6rem 1rem;
}
.category-link:hover {
padding-left: 1.5rem;
}
/* Diğer mobil düzenlemeler */
.hero-content h1 { font-size: 2.8rem; }
.categories-grid { grid-template-columns: 1fr; }
/* Mobil başlık düzeltmeleri */
.section-title h2 {
font-size: 2.5rem !important;
line-height: 1.2 !important;
padding: 0 1rem !important;
word-break: break-word !important;
hyphens: auto !important;
}
.categories-section {
padding: 4rem 1rem !important;
}
.container {
padding: 0 0.5rem !important;
}
/* Son Makaleler mobil */
.latest-posts-section {
padding: 3rem 0;
margin-top: 85px; /* Büyük header için margin artırıldı */
}
.latest-posts-container {
padding: 0 1rem;
}
.latest-posts-header h3 {
font-size: 2.2rem !important;
}
.post-card {
flex: 0 0 280px;
}
.post-image {
height: 150px;
}
.post-content {
padding: 1rem;
}
/* Slider navigation mobilde */
.slider-nav {
width: 40px;
height: 40px;
}
.slider-nav svg {
width: 20px;
height: 20px;
}
.slider-nav.prev {
left: 0.5rem;
}
.slider-nav.next {
right: 0.5rem;
}
/* Back to top mobilde */
.back-to-top {
bottom: 20px;
right: 20px;
width: 45px;
height: 45px;
}
.back-to-top svg {
width: 20px;
height: 20px;
}
/* Footer mobil */
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.site-footer {
padding: 3rem 1rem 2rem;
}
}
/* Ekstra küçük ekranlar için */
@media (max-width: 480px) {
.site-header {
padding: 0.6rem 0.8rem;
height: 70px; /* Küçük ekranlarda da büyük header */
}
.header-container {
gap: 0.3rem;
}
/* Kategoriler butonu en küçük */
.categories-toggle {
padding: 0.3rem 0.5rem;
height: 32px;
min-width: 40px;
}
/* Logo BÜYÜK KALACAK */
.custom-logo {
max-height: 55px; /* BÜYÜK LOGO */
}
.logo-text {
font-size: 1.4rem; /* BÜYÜK FONT */
}
/* Sosyal medya ikonları en küçük */
.social-icon {
width: 32px;
height: 32px;
}
.social-icon svg {
width: 16px;
height: 16px;
}
/* Categories menu en küçük */
.categories-menu {
min-width: calc(100vw - 1.6rem);
}
.section-title h2 {
font-size: 2rem !important;
padding: 0 0.5rem !important;
}
.hero-content h1 {
font-size: 2.2rem !important;
}
.latest-posts-header h3 {
font-size: 1.8rem !important;
}
}
/* Çok küçük ekranlar için (iPhone SE gibi) */
@media (max-width: 375px) {
.site-header {
padding: 0.5rem 0.5rem;
height: 65px; /* En küçük ekranlarda da büyük header */
}
.categories-toggle {
padding: 0.2rem 0.4rem;
height: 30px;
min-width: 35px;
}
.categories-icon {
width: 12px;
height: 12px;
}
/* Logo EN KÜÇÜK EKRANLARDA BİLE BÜYÜK KALACAK */
.custom-logo {
max-height: 50px; /* BÜYÜK LOGO */
}
.logo-text {
font-size: 1.2rem; /* BÜYÜK FONT */
}
.social-icon {
width: 30px;
height: 30px;
}
.social-icon svg {
width: 14px;
height: 14px;
}
.header-social {
gap: 0.2rem;
}
}
/* Tablet için orta boyut */
@media (min-width: 769px) and (max-width: 1024px) {
.section-title h2 {
font-size: 3rem;
}
.latest-posts-header h3 {
font-size: 2.5rem;
}
.header-container {
padding: 0 1.5rem;
}
.site-header {
padding: 0.6rem 1.5rem;
}
}
/* Desktop büyük ekranlar için */
@media (min-width: 1200px) {
.site-header {
padding: 1.5rem 2rem;
height: 100px; /* En büyük header */
}
.header-container {
max-width: 1200px;
}
.categories-toggle {
padding: 0.7rem 1.2rem;
font-size: 0.9rem;
height: 45px;
}
.custom-logo {
max-height: 90px; /* EN BÜYÜK LOGO */
}
.logo-text {
font-size: 2.4rem; /* EN BÜYÜK FONT */
}
.social-icon {
width: 50px;
height: 50px;
}
.social-icon svg {
width: 26px;
height: 26px;
}
}
/* Gizli elementler - Varsayılan Logo Icon'u tamamen gizle */
.logo-icon {
display: none !important;
visibility: hidden !important;
width: 0 !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
}