body {
    min-height: 250vh; /* 2 ekran yüksekliği */
        margin: 0;
    }
    html {
    scroll-behavior: smooth;
  }
  @font-face {
  font-family: myfont;
  src: url(görseller/Gabriela-Regular.ttf);
}
@font-face {
  font-family: myfon;
  src: url(görseller/ShadowsIntoLight-Regular.ttf);
}
.hakkimda {
  font-family:"myfon";
  
  color: rgb(0, 0, 0);
  text-align: center;
  font-size: 18px;   
}
#asd {
  font-weight: bold;
  font-size: 40px;
}


.kutu-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.kutu {
  width: 20%;
  height: 350px;
  border: 1px solid black;
  position: relative; /* açıklama buna göre konumlanacak */
  overflow: hidden;   /* taşanı gizle */
  transition: transform 0.3s ease;
  display: block; /* <a> olduğu için önemli */
  text-decoration: none; /* alt çizgiyi kaldırır */
  color: inherit; /* yazı renklerini bozmasın */
}

.kutu:hover {
  transform: scale(1.05);
}

/* Açıklama alanı */
.aciklama {
  position: absolute;
  bottom: -100%; /* başlangıçta gizli */
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 15px;
  box-sizing: border-box;
  transition: bottom 0.4s ease;
  font-size: 14px;
}

/* Hover olunca açıklama yukarı çıksın */
.kutu:hover .aciklama {
  bottom: 0;
}

/* Renkler */
.mavi { 
  background-image: url("görseller/ilahiadaletafis-1.png"); /* senin foto dosyan */
  background-size: cover;
  background-position: center;
}
.kirmizi { 
  background-image: url("görseller/2414716048_ElifKarakus_WebYayıncılığı_DergiKapagı_20251107-1.png"); /* senin foto dosyan */
  background-size: cover;
  background-position: center;
}
.yesil { 
  background-image: url("görseller/msslogo.jpg"); /* senin foto dosyan */
  background-size: cover;
  background-position: center;
}

html, body {
  cursor: none !important;
}

#customCursor {
  width: 20px;
  height: 20px;
  background: rgba(0, 21, 255, 0.833);
  border-radius: 90%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
    box-shadow: 0 0 20px 10px rgb(0, 21, 255);

}

.cursor-trail {
  width: 20px;
  height: 20px;
  background: rgba(7, 15, 243, 0.084);
  border-radius: 90%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 1;
  transition: opacity 0.3s linear, transform 0.3s linear;
}

.iletisim {
  font-family:"myfon";
  
  color: rgb(0, 0, 0);
  text-align: center;
    margin-top: 50px;
    padding: 120px 0;
}

.iletisim h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.iletisim a {
    display: block;          /* Alt alta getirir */
    margin-bottom: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);            /* İstersen değiştir */
    text-decoration: none;
}

.iletisim a:hover {
    text-decoration: underline;
}

.email {
    margin-top: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);
}
ul {
     list-style-type: "★";
}
.pop {
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(73, 6, 6);
  border: 2px solid #000;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 700;
  text-align: center;
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
  animation: fadeIn 1s linear 1.5s forwards;
}
.kapak {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #480505;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; display: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}