.logo {
  width: auto;  /* Oranını korur */
  cursor: pointer; /* İstersen tıklanabilir görünümü için */
}

.popout {
  font-weight: 900;
  font-size: 2rem; /* Bootstrap card-title boyutuna uygun */
  white-space: normal;
  padding: 0;
  border: none;
 
}
#kanton-name {
  font-size: clamp(2rem, 6vw, 6rem);
}

@media (max-width: 768px) {
  .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  #kanton-flag {
    max-width: 100%;
    margin-top: 1rem;
  }
}
 

.popout span {
  display: inline-block;
  position: relative;
  animation-name: ani;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

@keyframes ani {
  0%, 30% {
    transform: translate3d(0,0,0);
    text-shadow: 0 0 0 lightblue;
    color: black;
  }
  70%, 100% {
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em lightblue;
    color: black;
  }
}



body {
  margin: 0;
  overflow-x: hidden;
  font-family: sans-serif;
}

/* ------------------ SKY ------------------ */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, #83c7e7, #ccefff);
  transition: background 0.8s ease;
}

/* ------------------ SUN ------------------ */
.sun {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 100px;
  height: 100px;
  background: url("imges/sun.png") no-repeat center / cover;
  animation: rotateSun 60s linear infinite;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes rotateSun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ------------------ CLOUD ------------------ */
.cloud {
  position: absolute;
  top: 20%;
  width: 220px;
  height: 140px;
  background: url("imges/clouds.png") no-repeat center / contain;
  opacity: 0.6;
  animation: moveCloud linear infinite;
  transition: opacity 0.8s ease;
}

@keyframes moveCloud {
  from { transform: translateX(-250px); }
  to   { transform: translateX(120vw); }
}

/* ------------------ STARS ------------------ */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, white, transparent),
    radial-gradient(1px 1px at 80% 40%, white, transparent),
    radial-gradient(1px 1px at 50% 70%, white, transparent),
    radial-gradient(2px 2px at 10% 80%, white, transparent),
    radial-gradient(1px 1px at 90% 20%, white, transparent);
  background-size: 300px 300px;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* ------------------ AURORA ------------------ */
.aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%, 
    rgba(80,255,180,0.45), 
    rgba(0,255,150,0.25), 
    transparent 65%
  );
  filter: blur(70px);
  opacity: 0;
  animation: auroraMove 14s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  from { transform: translateX(-12%) scale(1.1); }
  to   { transform: translateX(12%) scale(1.25); }
}

main {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #333;
}

/*kanton listeleri */
		#kanton-list .list-group-item {
			width: 300px;
			margin: 5px auto;
		}

		#kanton-list li {
			font-size: 1.5rem;
			max-width: 400px;
		}

		.container #kanton-list li:hover {
			background-color: #61acc5;
		}

		.container ul li {
			padding: 10px;
			border-radius: 5px;
			margin-bottom: 5px;
			text-align: left;
		}

		ul.kanton-list {
			list-style: none;
			padding: 0;
		}

		ul.kanton-list li {
			margin-bottom: 8px;
		}

		ul.kanton-list a {
			text-decoration: none;
			color: #0077cc;
			font-weight: 500;
		}

		.kanton-card {
			height: 180px;
			position: relative;
			background-size: cover;
			background-position: center;
			border-radius: 8px;
			overflow: hidden;
			transition: transform .3s;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
		}

		.kanton-card:hover {
			transform: scale(1.02);
		}

		.overlay-text {
			position: absolute;
			bottom: 0;
			width: 100%;
			background: rgba(0, 0, 0, 0.4);
			color: #fff;
			text-align: center;
			font-weight: 600;
			padding: 8px 0;
			font-size: 1.1rem;
			text-shadow: 0 0 4px #000;
		}



        /*Footer*/
        i{
          font-size: 20px;
        }


 

 .team{
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;}

#heading, #heading0 {
  color: #ffffff;
}

.card {
	background-color: #E8EAF6;
	padding-top: 0px;
	cursor: pointer;
    transition: 0.5s;

}

.card-name:hover {
  color: #424242;
}


		.fab,
		.fas {
			color: rgb(116, 112, 112);
		}
    
.video-title{
  text-align: center;
  font-size: 24px;
  margin: 10px;
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
