/* Mobile Styles */
@media screen and (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  /* Reset all GSAP/ScrollTrigger styles */
  .main-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    position: static !important;
    transform: none !important;
  }

  section {
    width: 100%;
    min-height: 100vh;
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    left: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Section Title Styles */
  .section-title {
    color: #fff;
    font-size: clamp(24px, 6vw, 36px);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    position: relative;
    display: block !important;
    opacity: 1 !important;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #fff;
  }

  /* Section 1 Mobile Styles */
  .section-1 {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }





  .box1 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
  }

  .name {
    font-size: clamp(32px, 8vw, 60px);
    text-align: center;
    opacity: 1;
    transform: none;
    margin-bottom: 1rem;
  }

  /* Center all text content on mobile */
  p, h1, h2, h3, h4, h5, h6, div {
    text-align: center;
  }

  /* Improved text styles for mobile */
  .text-content, .description, .info-text {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* Hide Box2 on mobile */
  .box2 {
    display: none;
  }

  /* Animated Text Section */
  .mobile-text-section {
    min-height: 8vh;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    text-align: center;
  }



  .mobile-text-section h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
  }


  .mobile-u {
    font-size: clamp(20px, 5vw, 30px);
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
    text-align: left;
    color: black;
  }

.mobile-i {
    font-size: clamp(40px, 10vw, 50px);
    margin-top: 10rem;
    opacity: 1;
    transform: none;
    text-align: left;
  }


  .mobile-text-section p {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    color: #666;
    opacity: 1;
    transform: none;
    text-align: center;
    padding: 0 1rem;
  }

  /* Section 3 Mobile Styles */
  .section-3 {
    width: 100%;
    background: #000;
    padding: 1rem 0;
  }

  .gallery-container {
    width: 100%;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-slide {
    width: 100%;
  }

  .gallery-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* gallery-slide and images: no animations on mobile, show statically */
  .gallery-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
  }

  .left .image-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 113% !important;
  }



  .image-text h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .image-text p {
    font-size: 12px;
    opacity: 0.8;
  }

  @media screen and (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .gallery-image {
      aspect-ratio: 4/3;
    }
  }

  /* remove any active-state transforms for mobile gallery */
  .mobile-gallery img.active {
    transform: none !important;
    transition: none !important;
  }

  /* Pin Spacer Mobile Adjustments */
  .pin-spacer {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 1 !important;
    margin: 1 !important;
  }

  /* Section 4 & 5 Mobile Styles */
  .section-4,
  .section-5 {
    min-height: 100vh;
    width: 100%;
    padding: 4rem 1rem;
    background: #000;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    opacity: 1;
    transform: none;
  }

  /* Navigation Menu */
  .menu-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .menu-icon span {
    transition: 0.3s ease;
  }
}


a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #515151;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size:25px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 1px 1px 2px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #383838;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  margin-left: 85px;
  margin-top: 85px;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

.brush-reveal{
  display:inline-block;
  position:relative;
  color:#000;
  overflow:hidden;
}
.brush-reveal::after{
  content:"";
  position:absolute;
  top:0;left:0;width:100%;height:100%;
  background:#fff;
  transform:translateX(-100%);
  animation:brushWipe 1.2s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes brushWipe{
  to{transform:translateX(100%)}
}













/* Sadece mobilde çalışır */
@media (max-width: 767px) {
  .scroll-trigger-area {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;          /* WhatsApp ikonunun genişliği */
    height: 100%;         /* Section boyunca uzanır */
    z-index: 998;         /* WhatsApp'tan 1 alt */
    background: transparent;
    cursor: grab;         /* Kaydırma hissi */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
}

@media (max-width: 767px) {
  .scroll-trigger-area {
    touch-action: none; /* <= tarayıcının kendi kaydırmasını devre dışı bırak */
  }
}


@media (max-width: 767px) {
  .section-1 {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .scroll-sutun {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;          /* WhatsApp ikon genişliği */
    height: 100%;         /* section boyunca */
    background: transparent;
    z-index: 998;
    pointer-events: auto;
    touch-action: pan-y;  /* dikey kaydırmaya izin ver */
    -webkit-overflow-scrolling: touch;
    /* içeriği yok, ama DOKUNULABİLİR */
  }
}


@media (max-width: 767px) {
  /* Section-1’i dikey akışa çevir */
  .section-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;            /* native yükseklik */
    overflow-y: auto;        /* içeriği taşır */
    -webkit-overflow-scrolling: touch;
  }


  .section-2 {
    display: flex;
    flex-direction: column;
    width: 110%;
    height: auto;            /* native yükseklik */
    overflow-y: auto;        /* içeriği taşır */
    -webkit-overflow-scrolling: touch;
  }


  .section-2 right {
    height: 130%;
  }

  .img-container {
    line-height: 10;
    font-size: 0;
  }


  /* Box1 & Box2 artık kendi içinde scroll olabilir */
  .box1,
  .box2,
  {
    width: 100% !important;
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto;
    position: relative !important;
    transform: none !important;
    flex-shrink: 0;
  }


  .box2 {
    padding-right: 70px;     /* ikon + boşluk */
  }
}
