/* ===== TEMEL AYARLAR ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

body {
    background-color: #162346;
    transition: margin-left 0.5s;
}












/* Yaptigimiz İşler butonu stili */
.yaptigimizisler {
    background-color: #162346;
    color: white;
    padding: 10px 20px;
    border-radius: 5px; /* Yuvarlatılmış köşeler */
    text-decoration: none;
    margin: 10px;
}




/* ===== İLETİŞİM SAYFASI ===== */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 15px;
    font-size: 20px;
    color: #fff;
}

.contact-info a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.map-container h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* Forum Sayfası Stilleri */
.forum-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.forum-section h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.forum-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 25px 0 15px;
}

.forum-content p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}

.forum-content ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.forum-content ul li {
    color: #ddd;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.forum-content ul li:before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 18px;
}






/* Hakkımızda Sayfası Stilleri */
.about-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.about-section {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	
}

.about-section h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;

}

.about-section p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: right;
    font-size: 14px;
	    text-align: left;

}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 15px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-image-container {
    text-align: center;
    margin: 20px 0;
}








/* ===== NAVBAR ===== */
.navbar {
    height: 100vh;
    width: 80px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    transition: all 0.3s ease;
    padding: 50px 0 0 0;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
	overflow-y: auto;
}

.navbar::-webkit-scrollbar {
    display: none;
}

.navbar:hover {
    width: 250px;
}

/* ===== LOGO ===== */
.logo-container {
    text-align: center;
    border-bottom: 1px solid #333;
    padding: 40px 0;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.navbar-logo {
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.closed-logo {
    width: 60px;
    height: auto;
    opacity: 1;
	margin-top: 50px;
}

.open-logo {
    width: 160px;
    height: auto;
    opacity: 0;
}

.navbar:hover .closed-logo {
    opacity: 0;
}

.navbar:hover .open-logo {
    opacity: 1;
}

/* ===== MENÜ LİNKLERİ ===== */
.navbar a {
    padding: 20px 16px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    opacity: 1;
    letter-spacing: 0.5px;
    margin: 0;
    flex-shrink: 0;
}

.navbar a:hover {
    color: #ccc;
    background-color: transparent !important;
}

.navbar a i {
    width: 20px;
    text-align: center;
    margin-right: 0;
    font-size: 20px;
    transition: margin-right 0.3s ease;
}

.navbar:hover a {
    justify-content: flex-start;
}

.navbar:hover a i {
    margin-right: 10px;
}

.navbar a span {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 0;
}


.navbar:hover a span {
    opacity: 1;
    margin-left: 15px;
}

/* Navbar kapalıyken sadece ikonları göster */
.navbar:not(:hover) a span {
    display: none;
}

/* ===== AÇILIR MENÜ ===== */
.dropdown {
    position: relative;
    width: 100%;
	transition: all 0.3s ease;
	
}

.dropdown-content {
    position: relative;
    left: 0;
    background-color: black;
    display: none;
    min-width: 100%;
	transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
	
}

.dropdown:hover .dropdown-content {
    display: block;
	max-height: 500px; /* Yeterli büyük bir değer */
    opacity: 1;
}

.dropdown-content a {
    font-size: 15px;
    padding: 10px 16px 10px 46px;
    color: #ddd;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== ANA İÇERİK ===== */
#main {
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 80px;
    margin-top: 120px;
	    min-height: 100vh; /* Sayfa boyunca uzat */
    overflow-x: hidden; /* Yatay kaymayı engelle */
}

.navbar:hover ~ #main {
    margin-left: 250px;
}

/* ===== MOBİL MENÜ BUTONU ===== */


/* ===== MOBİL UYUMLULUK ===== */
@media (max-width: 768px) {
    .navbar {
        width: 60px;
        transition: all 0.3s ease;
        position: fixed;
        height: 100vh;
        background-color: black;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding-top: 0;
		padding-bottom: 0;
        top: 0;
        left: 0;
		bottom: 0;




    }
    
    .navbar.active {
        width: 250px;
    }
    
    #main {
        margin-left: 60px;
        transition: all 0.3s ease;
        width: calc(100% - 60px);
        position: relative;
        z-index: 1;
    }

    .navbar.active ~ #main {
        margin-left: 250px;
        width: calc(100% - 250px);
    }
    
    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1100;
        background: black;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 20px;
    }



    .navbar a {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        color: white;
        text-decoration: none;
        opacity: 1;
        width: 100%;
        
        margin-top: 10px;
    }

    .navbar a span {

        margin-left: 15px;
    }

    .navbar.active a span {
        opacity: 1;
        display: block;
    }

    .navbar a i {
        margin-right: 0;
        font-size: 20px;
        width: 20px;
        text-align: center;
    }

    .navbar.active a i {
        margin-right: 15px;
    }

    .logo-container {
        padding: 20px 0;
        height: auto;
        
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 80px;
        margin-bottom: 70px;
    }

    .closed-logo {
		  
        width: 40px;
        opacity: 1;
    }

    .open-logo {
        width: 160px;
        opacity: 0;
    }

    .navbar.active .closed-logo {
        opacity: 0;
    }

    .navbar.active .open-logo {
        opacity: 1;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background-color: #222;
        display: none;
        border-left: 4px solid #444;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding-left: 50px;
        font-size: 14px;
    }

    body.navbar-active {
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .filters {
        top: 10px;
        right: 0;


		
		
	 grid-template-columns: repeat(1, 1fr); /* 2 sütunlu grid */
      grid-auto-rows: auto; /* Otomatik yükseklik */
        gap: 8px;
      max-width: 95%;
      display: grid !important; /* Flex yerine grid zorla */
      margin-left: 130px;
      right: 0!important;
      z-index: 1!important;

    }
    
    .filter-btn {
        font-size: 13px;
        padding: 3px 5px;
    }
}

/* ===== FİLTRE BUTONLARI ===== */
.filters {
    position: relative;
    top: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    gap: 35px;
    justify-content: flex-end;
    width: auto;
    background-color: rgba(22, 35, 70, 0.8);
    padding: 12px 30px;
    border-radius: 30px;
    white-space: nowrap;
    
}

.filter-btn[data-filter="all"] {
    display: none;
}

.filter-btn {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #909cb9 !important;
    padding: 0 !important;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-btn.active {
    color: #fff !important;
    font-weight: 400;
}

.filter-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* ===== VİDEO GALERİ ===== */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 992px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters {
        gap: 10px;
        padding: 8px 15px;
    }
	
	
	
	
	

}

@media (max-width: 576px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .filters {
        top: 20px;
        right: 10px;
        max-width: 95%;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* ===== İÇERİK ALANI ===== */
.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.product-card p {
    color: #ddd;
    line-height: 1.6;
}



.close-btn:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* ===== ALT MENÜLER ===== */
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    background-color: rgba(51, 51, 51, 0.95);
    display: none;
    transition: all 0.5s ease;
    opacity: 0;
    
    border-left: 1px solid #444;
    
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.navbar a:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.submenu a {
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submenu a i {
    margin-right: 10px;
    font-size: 16px;
}




footer {
    background: #1a1a2e !important;
    color: white !important;
    padding: 50px !important;
    text-align: center !important;
}