/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* GENEL */
.dikey {display: flex;flex-direction: column;}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
  	font-size: 14px;
}

*::before,
*::after {
    box-sizing: border-box;
}

button{
	color:white;
	cursor: pointer;
	border: none;
}

button:hover {
	opacity: 0.8;
	transition: transform 0.3s ease;
	transform: scale(1.1);
}

body {
    background-color: #121212;
	height: 100%;
    display: flex;
    flex-direction: column;
	min-height: 100vh;
}





.hidden {
    display: none;
}



        header {
            background: #2d3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            font-size: 2.5rem;
            margin: 0;
        }
        .container {
            margin: 0 auto;
            padding: 20px 0;
        }
        h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2d3e50;
        }
.features {
    display: grid;
     grid-template-columns: 1fr; /* Tek sütun */
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    padding: 22px 24px;
    border: 1.5px solid transparent;
    transition: border-color 0.4s ease, background-color 0.3s ease;
    cursor: default; /* Buton gibi olmasın diye */
}

.features li:hover {
    border-color: #4a90e2; /* Hoverda hafif mavi sınır */
    background-color: #f0f6ff; /* Çok hafif mavi arka plan */
    box-shadow: 0 4px 12px rgba(74,144,226,0.2); /* Hoverda gölge biraz belirgin */
}

.features h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #203040;
    font-weight: 600;
}

.features p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.nesne_isim {
	font-size: 1.1rem; 
	margin-left:10px;
	list-style:none;
	white-space: pre-wrap;
}
.custom-table {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  border-collapse: collapse;
  width: 100%;
  margin-left: 10px;
}

.custom-table th,
.custom-table td {
  padding: 8px;
  vertical-align: middle;
}

.custom-table th {
  white-space: nowrap;
  text-align: left;
}

.custom-table td img {
  width: 200px;
  max-height: 150px;
  object-fit: contain;
}

.custom-table td:last-child {
  width: auto; /* Açıklama sütunu kalan alanı kaplasın */
  max-width: calc(100% - 220px); /* Başlık ve resim sütunlarını çıkar */
  word-wrap: break-word; /* Uzun kelimeler taşmasın */
}







        footer {
            background: #2d3e50;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }
        footer a {
            color: #f0b429;
            text-decoration: none;
        }













/* navigasyon menusu */
nav {
	position:fixed;
	background-color: #02475e;
	width:100%;
	height: 70px;
	font-size: 15px;
	font-weight: 600;
	z-index:1000;
}

/* Hamburger butonunu gizle, sadece mobilde göster */
nav .menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 24px !important;
	cursor: pointer;
	padding: 0 20px;
	height:100%;
}

/* Menü listesi kapsayicinin genel ayarları */
nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	background-color: #02475e;
}

nav li {
	position: relative;
}

/* Menü bağlantılarının görünümü */
a {
	text-decoration: none;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
 	color: #fff;
	padding: 0 10px;
  	width: 100%;
}

/* Tüm alt menülerin başlangıçta gizli olması */
nav li ul {
	display: none;
	position: absolute;
}

/* Fare ile üzerine gelince alt menüyü gösterir */
nav li.show > ul  {
	display: flex;
}

/* Üzerine gelinen bağlantının arka planını degistirir */

nav li.show > a {
	color: orange;
}

/* 1. seviye Menü */
nav > ul {
	margin: 20px 0 0 15px;
}
nav > ul > li {
	display: flex;
	height: 100%;
	align-items: center;
}
nav > ul > li > a{
	height: 100%;
	margin-left: 10px;
}

/* alt menuler sağa doğru açılır */
nav li ul {
	top: -10px;
	left: 100%;
	flex-direction: column;
	gap: 7px;
}

/* 2. seviye menü: Ana menünün altına açılır */
nav > ul > li > ul {
	top: 100%;
	left: 10px;
	padding: 0 0 10px 0;
}

nav > ul > li  ul {
	padding: 10px 0;
}

.highlight-demo {
  background-color: #ffc107;
  color: #212529;
  font-weight: bold;
  border-radius: 4px;
  padding: 5px 10px;
  margin-top: -5px;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,193,7, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,193,7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7, 0); }
}

.highlight-panel {
  background-color: #20c997;
  color: #212529; /* beyaz yazı */
  font-weight: bold;
  border-radius: 4px;
  padding: 5px 12px;
  margin-top: -5px;
  display: inline-block;
  animation: pulse-yesil 1.8s infinite;
}

@keyframes pulse-yesil {
  0%   { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(32, 201, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0); }
}


/* Mobil ekranlar için */
@media (max-width: 1000px) {
	/* Hamburger butonunu göster */
	nav .menu-toggle {
		display: block;
	}

	/* 1. seviye menu */
	nav ul {
		flex-direction: column;
		display: none;
		width: max-content;
		height: auto;
		margin: 0;
		gap:7px;
	}

	nav ul.show {
		display: flex;
	}

	 nav > ul > li > ul {
		top:-10px;
		left: 100%;
	  }

}

td.duration {
    text-align: center; /* Hücreyi ortala */
    white-space: nowrap; /* "7 Gün" gibi yazılar alt satıra inmesin */
}

td.duration .number {
    display: inline-block;
    width: 60px;       /* Rakamlar hizalı olsun */
    text-align: right;     /* Rakam sağdan hizalansın */
}

td.duration .unit {
    display: inline-block;
    width: 60px;       /* Rakamlar hizalı olsun */
    text-align: left;      /* "Gün" sola yapışsın */
    margin-left: 5px;     /* Gün ile arasına boşluk bırak */
}

td.duration .komma {
    display: inline-block;
    width: 60px;       /* Rakamlar hizalı olsun */
    text-align: left;      /* "Gün" sola yapışsın */
}