@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@400..700&family=Lobster&family=Special+Gothic+Condensed+One&family=Sue+Ellen+Francisco&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size:10px;
    text-decoration: none;
    list-style: none;
}
html{
    scroll-behavior: smooth;
}
:root{
    --tutku:#C2185B;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  :root {
    --tutku: #c2185b;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
   padding-left: 3rem;
  padding-right: 3rem;
  height: 7vh;
  background: var(--tutku);
  position: relative;
  border-bottom: 2px solid #000;
  z-index: 1000;
}
.logo a i {
     font-size: 3rem;
    margin-left: 3rem; 
    color: #fff;
    transition: filter 0.3s ease;
     flex-shrink: 0;
     border-radius:0.5rem;
     padding:1rem 1.5rem;   
      transition:0.3s all ease-in-out;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.logo a i:hover {
   color:#000;
}
.title {
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  user-select: none;
  white-space: nowrap;
  flex-grow: 1; 
  text-align: center;
}
 .social-icons {
  margin-right: 2rem; 
  right:0;
  display: flex;
  align-items: center;
}

.social-icons a i{
  font-size: 4rem; 
  color: #fff;
  cursor: pointer;
  margin-right:3rem;
  transition: 0.3s all ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .social-icons a i:hover{
    color: #000;
  }

}
.dropdown {
  position: absolute;
  top: 110%; /* navbar’ın altına gelecek şekilde */
  right: 0;   /* sosyal ikonların hizasında */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2000;
  pointer-events: none; /* gizliyken tıklanamaz */
}

.dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  color: var(--tutku);
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background-color: var(--tutku);
  color: #fff;
}
.dropdown a:hover i {
  background-color: var(--tutku);
  color: #fff;
}
.dropdown a i {
  margin-right: 0.6rem;
  font-size: 2.2rem;
  color: var(--tutku);
  flex-shrink: 0;
}

.gallery{
    width:100%;
    height:100%;
    position:relative;
    top:0;
    display:grid;
    border-left:none;
    border-right:none;
    grid-template-columns:repeat(4,1fr);
    border-bottom:none;
}
.gallery .item{
    width:20vw;
    max-height:40vh;
    border:2px solid var(--tutku);
    padding:2rem 2rem;
    position: relative;
    margin:2rem 2rem;
    border-radius:1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     z-index: 0;
}
.gallery .item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 10;
}
.video-item {
  position: relative;
}

.video-item::after {
  content: '\f04b'; /* FontAwesome play icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 1rem 1.5rem;
  z-index: 10;
  pointer-events: none; /* Tıklamayı engellemez */
}

.gallery .item video,
.gallery .item img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:1rem;
}
.gallery .item .resim-metin p{
    font-family: 'Courier New', Courier, monospace;
    font-size:1.2rem;
    color:#fff;
    position:relative;
    bottom:0;
    font-weight: bold;
}
.gallery .item .resim-metin {
    position:absolute;
    width:100%;
    max-height:25%;
    left:0;
    bottom:0;
    background-color:rgba(0,0,0,0.6);
    justify-content: center;
    display:flex;
    opacity: 0;
    align-items: center;
    text-align: center;
    transition-duration: 0.5s;
    border-radius:1rem;
}
.gallery .item:hover .resim-metin {
    opacity:1;
}
.lightbox-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


/* Açıkken aktif */
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Büyük foto */
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  cursor: default;
}

.lightbox-overlay.active img {
  transform: scale(1);
}
.lightbox-overlay video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Kapatma butonu */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  padding:0 2rem;
  color:#fff;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine){
.lightbox-close:hover{
  color:var(--tutku);
}}
@media (hover: hover) and (pointer: fine) {
  .gallery .item .resim-metin {
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gallery .item:hover .resim-metin {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .gallery .item .resim-metin {
    display: none !important;
  }
}
@media (max-width: 1200px) {
     .navbar {
        height: 7vh;
    }
    /* Galeri: 3 kolon */
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Galeri öğesi genişliği */
    .gallery .item {
        width: 30vw;
        padding:1rem 1rem;
    }
    .gallery .item .resim-metin{
        display:none;
    }
    .navbar .logo a i{
        font-size: 3rem;
    }
    .navbar .social-icons a i {
        font-size:3rem;
        margin:0;
    }
    .navbar .social-icons .dropdown a {
        font-size:1.6rem;
    }
    .navbar .social-icons .dropdown a i{
        font-size:1.8rem;
        margin-right:1rem;
    }
    .navbar .title {
        font-size:2rem;
    }
}

@media (max-width: 1024px) {
    /* Galeri: 2 kolon */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Galeri öğesi genişliği */
    .gallery .item {
        width: 45vw;
    }
}

@media (max-width: 768px) {
    /* Navbar: Yükseklik azaltma */
    .navbar {
        height: 7vh;
    }

    /* Logo boyutunu küçültme */
    .navbar .logo a i {
        font-size: 2rem;
        margin-left:0;
    }
    .gallery .item {
        width: 40vw;  /* Galeri öğesinin genişliğini %100'e yaklaştırdık */
        max-height: 30vh;
    }

    /* Sosyal medya: Butonları tek sıraya yerleştirme */
    .social-media {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-evenly;
         .logo a {
    font-size: 3rem;
    margin-left: 1rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .social-icons a {
    font-size: 3rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .dropdown {
    width: 160px;
    font-size: 0.8rem;
  }
    }
@media screen and (max-width:500px){
    .navbar .logo a i {
        margin-left:-20px;
    }
     .navbar .social-icons a i {
        margin-top:10px;
        margin-right:-20px;
    }
    .dropdown{
        font-size:0.7rem;
    }
    .navbar .title{
        font-size:1.7rem;
    }

}}