/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('/assets/images/body-bg.png') center center / cover no-repeat fixed;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative; /* sabit butonlar için güvenli olsun */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none; /* <<<<<<<<<<<<<< BU SATIR */
  z-index: 0;
}




/* Header */
.hero {
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6rem 4rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
  color: #fff;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* Navbar */
.navbar {
  background-color: #222;
  padding: 1rem;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #eee;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #f39c12;
}

/* Genel Section Ayarları */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* About */
.about h2 {
  font-size: 3rem;
  color: #f39c12;
  text-align: center;
  margin-bottom: 0rem;
}

.about p {
  color: #f39c12;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* About Wrapper */
.about-wrapper {
  background: url('/assets/images/about-bg-text.png') center/cover no-repeat;
  background-size: cover;
  position: relative;
  color: #eee;
  padding: 0rem 2rem;
  overflow: hidden;
}

.about-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(5px);
  opacity: 0.5;
  z-index: -1;
}

/* Info Section */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.info-card {
  background: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.info-card:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}

.info-card h3, .info-card p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  color: #f39c12;
}

.info-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card p {
  font-size: 1.3rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Portfolio */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Videos */
.videos {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.swiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  background-color: #000;
  transition: all 0.5s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.swiper-slide-active video {
  transform: scale(1.1);
}

.swiper-slide-prev video,
.swiper-slide-next video {
  transform: scale(0.8);
  filter: blur(3px) brightness(0.7);
}

/* Contact */
.contact ul {
  list-style: none;
  text-align: center;
  font-size: 1.2rem;
}

.contact a {
  color: #f39c12;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #222;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #f39c12;
}

.whatsapp-button svg {
  width: 35px;
  height: 35px;
}

/* Lightbox Yeni Tasarım */
.lightbox-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.lightbox-content img:hover {
  transform: scale(1.05);
}



.hidden {
  display: none;
}

.contact-intro {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  text-align: center;
  color: #eee;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.contact-info a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-icon {
  background-color: #222;
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f39c12;
  color: #111;
  transform: scale(1.1);
}

.contact-icons .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #222;
  color: #f39c12;
  border-radius: 50%;
  margin: 1rem 0.5rem 0 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-decoration: none;
}

.contact-icons .social-icon:hover {
  transform: scale(1.15);
  background-color: #f39c12;
  color: #222;
  box-shadow: 0 0 20px #f39c12, 0 0 30px #f39c12, 0 0 40px #f39c12;
}

.copyable {
  cursor: pointer;
  color: #f39c12;
  transition: color 0.3s;
}

.copyable:hover {
  color: #fff;
}

.social-fixed {
  position: fixed;
  bottom: 100px; /* biraz yukarıda başlasın */
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 999;
}

.social-icon-fixed {
  width: 60px;
  height: 60px;
  background-color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #f39c12;
}

.social-icon-fixed svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-icon-fixed:hover {
  background-color: #f39c12;
  color: #222;
  transform: scale(1.15);
  box-shadow: 0 0 20px #f39c12, 0 0 30px #f39c12, 0 0 40px #f39c12;
}

/* Hakkımda Bölümü */
.hakkimda-section {
  background: url('/assets/images/hakkimda-bg.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hakkimda-container {
  max-width: 1000px;
  padding: 4rem 0rem;
  border-radius: 10px;
}

.hakkimda-text h2 {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 15rem;
}

.hakkimda-text p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  margin-right: 10rem;
}

/* Genel mobil ve tablet uyumu */
@media (max-width: 1200px) {
  .hero, .about-wrapper, .hakkimda-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body, p, a, li, span {
    font-size: 1rem;
    line-height: 1.5;
  }

  h1, h2, h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  section {
    padding: 2rem 1rem;
    max-width: 100%;
  }

  .hero {
    height: auto;
    min-height: 80vh;
    padding: 2rem 1rem;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    max-width: 90%;
    text-align: center;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .info-cards {
    gap: 1rem;
  }

  .info-card {
    margin-bottom: 4rem;
  }

  .info-card,
  .info-card:nth-child(even) {
    align-items: center;
    text-align: center;
  }

  .info-card h3 {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .info-card p {
    font-size: 0.95rem;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
  }

  .hakkimda-text h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .hakkimda-text p {
    max-width: 90%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
  }
  .hakkimda-container {
    padding: 2rem 1rem;
    max-width: 90%;
  }

  .swiper-slide {
    width: 250px;
  }

  .swiper-slide video {
    height: 250px;
  }

  .lightbox-overlay {
    overflow-y: auto;
    padding: 2rem 0;
    align-items: flex-start;
  }

  .whatsapp-button,
  .social-fixed {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 80px;
  }

  .whatsapp-button svg,
  .social-fixed svg {
    width: 35px;
    height: 35px;
  }
}

/* Küçük Tablet ve Büyük Telefonlar */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .info-card h3 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .info-card p {
    font-size: 0.95rem;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
  }

  .hakkimda-text h2 {
    font-size: 1.8rem;
  }

  .hakkimda-text p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .gallery-item img {
    height: 180px;
  }

  .swiper-slide video {
    height: 200px;
  }
}

/* Küçük Telefonlar */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hakkimda-text h2 {
    font-size: 1.5rem;
  }

  .hakkimda-text p {
    font-size: 0.9rem;
  }

  .gallery-item img {
    height: 150px;
  }

  .swiper-slide video {
    height: 180px;
  }
}
