/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Deep dark background */
    color: #e0e0e0; /* Light text for contrast */
    position: relative; /* Needed for z-index to work properly with vanta-bg */
}

/* Vanta Waves Background */
#vanta-waves-bg {
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes the animation behind all other content */
}

/* Vanta Globe Background */
#vanta-globe-bg {
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes the animation behind all other content */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    padding: 40px 0;
    min-height: calc(100vh - 120px);
}

/* Navbar */
.navbar {
    background-color: rgba(25, 25, 25, 0.8); /* Semi-transparent dark background */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* Navbar */
.navbar-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.logo {
display: flex; /* Metin ve resmi yan yana hizalamak için */
align-items: center; /* Dikeyde ortalamak için */
gap: 10px; /* Logo ile metin arasına boşluk bırakmak için */
text-decoration: none;
transition: transform 0.3s ease;
}

.logo-img {
height: 60px;
}
/* 1) Logo metni asla alt satıra düşmesin */
.logo,
.logo-text {
  white-space: nowrap;
}

/* 2) Logo alanı daralırken sıkışıp küçülmesin */
.logo {
  flex-shrink: 0;
}

/* 3) Orta kırılımda boyutları biraz küçült, gap'i azalt */
@media (max-width: 992px) {
  .logo-img { height: 48px; }          /* 60px -> 48px */
  .logo-text { font-size: 22px; }      /* 28px -> 22px */
  .nav-links { gap: 16px; }            /* 30px -> 16px */
  .nav-links a { font-size: 15px; }
}

/* 4) Küçük telefonlar için (zaten .navbar-content column oluyor) biraz daha küçült */
@media (max-width: 576px) {
  .logo-img { height: 44px; }
  .logo-text { font-size: 20px; }
}

/* (İsteğe bağlı) Akışkan font boyutu istersek:
.logo-text { font-size: clamp(20px, 3.2vw, 28px); }
*/

.logo-text {
font-size: 28px;
font-weight: 700;
color: #ffffff;
margin: 0; /* Tarayıcının varsayılan margin ayarını sıfırlamak için */
}

.logo:hover {
transform: scale(1.05);
}

.logo-text {
    font-size: 28px; /* İsteğe göre ayarlayabilirsiniz */
    font-weight: 700;
    color: #ffffff;
    margin: 0; /* Tarayıcının varsayılan margin ayarını sıfırlamak için */
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #b0b0b0; /* Light gray for links */
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    color: #b0b0b0;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

/* Home Page */
.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.hero-content {
    position: relative; /* İçeriğin animasyonun üstünde kalması için */
    z-index: 2; /* Arkaplanın (z-index: 1) üstüne çıkmasını sağlar */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}
.social-media-section {
    margin-top: 60px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    padding-bottom: 10px;
}

.social-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #e0e0e0;
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #3a3a3a;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.card-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.social-card p {
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* Sosyal Medya Butonları */
.social-button {
    display: inline-flex;
    align-items: center; /* Dikey hizalama için */
    justify-content: center;
    gap: 10px;
    /*width: 100%;*/
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}


.social-button i {
    font-size: 20px;
}


.instagram-button {
    /*background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc236a, #bc1888);*/
}


.instagram-button:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc236a, #bc1888, #8e44ad);
    transform: scale(1.05);
}


.x-button {
    /*background-color: #000000;*/
}


.x-button:hover {
    background-color: #1a1a1a;
    transform: scale(1.05);
}


.telegram-button {
    /*background-color: #0088cc;*/
}

.telegram-button:hover {
    background-color: #0077b3;
    transform: scale(1.05);
}

/* Öne Çıkan İçerik Bölümü */
.featured-content-section {
    margin-top: 60px;
    text-align: center;
}

.featured-articles-container {
   display: flex;
   justify-content: center;
   gap: 30px;
   flex-wrap: wrap;
   margin-top: 30px;
   align-items: flex-start; /* Bu satırı ekledik */
}

/* Article card yapısını Twitter gönderileri için güncelledik */
.article-card {
    background-color: #1e1e1e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    border: 1px solid #3a3a3a;
    padding: 10px;
    display: flex; /* Gömülen içeriğin dikeyde ortalanması için */
    flex-direction: column; /* İçeriğin dikeyde sıralanmasını sağlar */
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Gönderi kapsayıcısı için ek stil */
.embed-container {
    width: 100%;
    max-width: 100%;
    margin: auto; /* İçeriği yatay ve dikeyde ortalamak için */
    display: block; /* Flex özelliğini kaldırıp block yapıyoruz */
}

/* Gömülen Twitter ve Instagram gönderisi için stil */
.twitter-tweet,
.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto; /* Sabit min-width değerini kaldırdık */
    margin: 0 auto;
}

/* Instagram için ek düzenleme */
.instagram-media {
    min-height: 0 !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .social-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        max-width: 90%;
        margin-bottom: 20px;
    }

  .article-card {
        padding: 10px;
    }
    
    .twitter-tweet {
        min-height: auto; /* Mobil cihazlar için de sabit yüksekliği kaldırdık */
    }
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-info {
    padding: 20px;
}

.article-info h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
}

.article-info .article-excerpt {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #2980b9;
}

/* Haber Bülteni Bölümü */
.newsletter-section {
    background-color: #1c1c1c;
    text-align: center;
    padding: 60px 40px;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.newsletter-section .section-title {
    color: #ffffff;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.newsletter-section p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid #3a3a3a;
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3498db;
}

.subscribe-button {
    background-color: #27ae60;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe-button:hover {
    background-color: #2ecc71;
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .social-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        max-width: 90%;
        margin-bottom: 20px;
    }
}



/* About Page */
.about-section {
    padding: 40px 0;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.7); /* Opaklık ayarlandı */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.profile-image-container {
    margin-bottom: 25px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #3498db;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.profile-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.profile-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.profile-text .subtext {
    font-size: 14px;
    color: #707070;
    margin-top: 15px;
}







/* Contact Page */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-form {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-form h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-form p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #2c2c2c; /* Dark input background */
    border: 2px solid #3a3a3a; /* Dark border */
    border-radius: 10px;
    font-size: 16px;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.form-button {
    background: linear-gradient(45deg, #3498db, #8e44ad);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.3);
}

/* İletişim Bilgileri */
.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #e0e0e0;
}

.social-icon-link:hover {
    transform: scale(1.15);
}

.social-icon-link i {
    font-size: 40px;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.social-icon-link.instagram:hover i {
    color: #E1306C;
}

.social-icon-link .social-svg-icon {
    width: 40px;
    height: 40px;
    fill: #e0e0e0;
    transition: fill 0.3s ease;
}

.social-icon-link.twitter:hover .social-svg-icon {
    fill: #1DA1F2;
}

svg {
    vertical-align: middle;
}

.social-icon-link.instagram {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.social-icon-link.instagram:hover {
    border-color: #E1306C;
}

.social-icon-link.twitter {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.social-icon-link.twitter:hover {
    border-color: #1DA1F2;
}

/* Telegram İkonunun Varsayılan ve Hover Stili */
.social-icon-link.telegram {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.social-icon-link.telegram:hover {
    border-color: #0088cc;
    transform: scale(1.15); /* Diğer ikonlarla aynı hover efekti */
}

.social-icon-link.telegram:hover i {
    color: #0088cc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        justify-content: center;
    }
    .hero-section {
        padding: 60px 20px;
    }
    .hero-section h1 {
        font-size: 36px;
    }
    
    /* Yan yana duran sosyal medya kartlarını alt alta sıralama */
    .social-media-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .profile-card {
        padding: 30px;
    }
    .profile-text h1 {
        font-size: 28px;
    }
    .contact-form {
        padding: 30px;
    }
}