@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  justify-content: center;
  align-items: center;
}

header {
  display: flex;
  justify-content: center;
  background: #fff;
}

* {
  margin: 0;
  padding: 0;
}

/* Logo and Navbar */
.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header a {
  text-decoration: none;
}

/*header*/
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
}

.header-main {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 4px;
}

.header .logo img {
  padding: 0 15px;
  width: 150px;
}

.header .nav-menu {
  padding: 0 15px;
}

.header .menu>.menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}

.header .menu>.menu-item>a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
  background-color: #e1b05e;
}

.header .menu>.menu-item>a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
  color: #e1b05e;
}

.header .menu>.menu-item>.sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #e1b05e;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item-has-children:hover>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}

.header .open-nav-menu span:before {
  top: -7px;
}

.header .open-nav-menu span:after {
  top: 7px;
}

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.356);
  margin: 0 0 15px 15px;
  border-radius: 50px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu img {
  width: 20px;
}

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/*home section*/
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url('../images/logo.svg');
  background-position: center top;
  background-size: cover;
}


/* responsive */

@media(max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .nav-menu {
    position:fixed;
    left: -280px;
    visibility: hidden;
    width: 280px;
    height: 520px;
    top: 0;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.822);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }

  .header .nav-menu.open {
    visibility: visible;
    left: 0px;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .menu>.menu-item>a {
    color: #555;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }

  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid #333333;
  }

  .header .menu>.menu-item>a .plus:before,
  .header .menu>.menu-item>a .plus:after {
    background-color: #000000;
  }

  .header .menu>.menu-item-has-children.active>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu>.menu-item>.sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 12px 45px;
    color: #000000;
    border-bottom: 1px solid #333333;
  }

  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}

/* Logo and Navbar */

/*Slider section */
.owl-carousel {
  width: 100%;
  height: 115vh;
}

.slide {
  width: 100%;
  height: 115vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115vh;
  background-color: rgba(0, 0, 0, 0.137);
}

.slide-1 {
  background-image: url(../images/slide.png)
}

.slide-2 {
  background-image: url(../images/slide1.png);
}

.slide-3 {
  background-image: url(../images/slide2.png);
}
.slide-4 {
  background-image: url(../images/ses.png);
}
.slide-5 {
  background-image: url(../images/piknik.png);
}
.slide-6 {
  background-image: url(../images/yemek.png);
}
.slide-7 {
  background-image: url(../images/animasyon.png);
}
.slide-8 {
  background-image: url(../images/parkur.png);
}
.slide-9 {
  background-image: url(../images/atölye.png);
}
.slide-10 {
  background-image: url(../images/tiyatro.png);
}
.slide-11 {
  background-image: url(../images/açılış.png);
}
.slide-12 {
  background-image: url(../images/salon.png);
}
.slide-13 {
  background-image: url(../images/söz.png);
}
.slide-14 {
  background-image: url(../images/kına.png);
}
.slide-15 {
  background-image: url(../images/son.png);
}
.slide-content {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20%;
}

.slide-content h1 {
  font-size: 45px;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.slide-content button {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bolder;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.slide-content button:hover {
  color: #fff;
  background-color: rgb(255, 0, 0);
}

.owl-dots {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1%;
}

.owl-dots span {
  width: 20px !important;
  height: 20px !important;
}

.owl-dots button {
  border: none !important;
  outline: none !important;
}

.owl-nav button {
  border: none !important;
  outline: none !important;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  font-size: 65px !important;
  font-weight: bolder !important;
  background: none !important;
}

.owl-prev {
  left: 1%;
}

.owl-next {
  right: 1%;
}

/*Slider section */

/* Yetenek section */
.container2 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
  padding: 0 8%;
  margin-top: 30px;
}

.container2 h1 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
  color: #555;
  font-size: 40px;
}

.container2 h1::after {
  content: '';
  background: rgb(255, 0, 0);
  width: 200px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 30px;
}

@media (max-width:768px){
  .row{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
  border: 1px solid rgb(255, 0, 0);
  box-shadow: 3px 5px 5px rgb(73, 70, 70);
}

.service a {
  text-decoration: none;
  color: #000;
}

.service a:hover {
  text-decoration: none;
  color: #fff;
}

.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: red;
}

.service h2 {
  font-weight: 500px;
  margin-bottom: 8px;
}

.service:hover {
  background: #e1b05e;
  color: #fff;
  transform: scale(1.05);
  border: 2px solid rgba(199, 195, 195, 0.801);
}

.service:hover i {
  color: white;
}

/* Yetenek section */

/*hizmet section */
.services {
  /* width: 1500px;*/
  padding: 100px 60px;
  margin: auto;
}

.services h1 {
  color: #555;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 15px;
}

.services h1::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 3px;
  background-color: #e1b05e;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.content {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Masaüstünde 4 sütun */
  gap: 20px;
  margin-top: 50px;
}

/* Tablet boyutu (1024px altı) → 2 sütun */
@media screen and (max-width: 1024px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telefon boyutu (769px altı) → 2 sütun */
@media screen and (max-width: 769px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card {
    width: 100%;   /* sütuna tam otursun */
    height: auto;  /* içerik kadar */
    margin: 0;
  }
}

/* Çok küçük ekran (480px altı) → 1 sütun */
@media screen and (max-width: 480px) {
  .content {
    grid-template-columns: 1fr;
  }
}


.box img {
  width: 200px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 5px rgb(73, 70, 70);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.box h3 {
  color: #555;
  font-size: 25px;
  font-weight: 600;
}

.box a {
  display: block;
  width: fit-content;   /* içeriği kadar genişlik */
  margin: 10px auto;    /* ortalama */
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
}

.box a:hover {
  color: #000;
}

.card:hover .box i {
  background-color: #e1b05e;
  color: #fff;
  border-color: #e1b05e;
}

.card::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.082);
  top: 0;
  left: 0;
  z-index: -1;
  transform: rotate(15deg);
  transition: all 0.5s ease;
}

.card:hover::after {
  transform: rotate(-15deg);
  background-color: #e1b05e;
}

/*hizmet section */

/* cözüm ortakları */
.cözümortaklari-section {
  margin-top: 100px;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.082);
}

.client-wrap {
  width: 100%;
  height: auto;
  text-align: center;
}

.client-wrap h1 {
  font-size: 40px;
  font-weight: 600;
  color: #555;
}

.client-wrap hr {
  width: 15%;
  height: 5px;
  border: none;
  background: #e1b05e;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 30px;
}

.client-in {
  width: 100%;
  height: auto;
}

.client-in ul {
  padding: 0;
  margin: 0;
}

.client-in ul li {
  list-style: none;
  display: inline-block;
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: .5s;
}

.client-in ul li img {
  width: 100%;
  height: 100%;
}

.client-in ul li img:nth-child(1) {
  transform: translateY(0);
  transition: .5s;
}

.client-in ul li img:nth-child(2) {
  transform: translateY(0);
  transition: .5s;
}

.client-in ul li:hover img:nth-child(1) {
  transform: translateY(-100%);
  transition: .5s;
}

.client-in ul li:hover img:nth-child(2) {
  transform: translateY(-100%);
  transition: .5s;
}

/* slider-icon-section */
.slider-area h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 100px 0 30px 0;
  color: #555;
}

.slider-area hr {
  width: 15%;
  height: 5px;
  border: none;
  background: #e1b05e;
  margin: auto;
  margin-top: -25px;
  margin-bottom: 30px;
}

.wrapper {
  display: flex;
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border: none;
  padding: 4px;
}

.wrapper img {
  width: 80px;
  height: 80px;
  margin-left: 15px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
}

.item {
  animation: animate 30s alternate;
}

.container:hover .item {
  animation-play-state: paused;
}

@keyframes animate {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-1100px, 0, 0);
  }
}

@media (max-width:767px) {
  .slider-area h2 {
    font-size: 16px;
  }

  .wrapper {
    width: 95%;
    border-radius: 0;
    padding: 0;
  }
}

/* end slider section */
/* FOOTER SECTİON */

.footer-section {
  background-color: #e0dbdb83;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  margin-top: 120px;
}

.container3 {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.col {
  min-width: 250px;
  color: #000000f2;
  padding: 0 2rem;
  padding: 5px;
  font-size: 14px;
}

.col p {
  font-size: 14px;
  font-weight: 300;
  width: 200px;
}

.col .footer-title {
  font-size: 14px;
  font-weight: 300;
  width: 200px;
}

.col .adres {
  font-size: 14px;
  font-weight: 300;
  width: 200px;
}

.col i {
  color: #555;
}

.col .logo {
  margin-top: 30px;
  width: 150px;
  margin-bottom: 25px;
}

.col h3 {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.col h3::after {
  content: '';
  height: 3px;
  width: 0px;
  background-color: #e1b05e;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;

}

.col h3:hover::after {
  width: 30px
}

.col .social a i {
  color: #555;
  margin-top: 2rem;
  margin-right: 5px;
  transition: 0.3s ease;
}

.col .social a i:hover {
  transform: scale(1.5);
  filter: grayscale(25);
  color: #e1b05e;
}

.col .links a {
  font-size: 14px;
  display: block;
  text-decoration: none;
  color: #000000;
  margin-bottom: 5px;
  position: relative;
  transition: 0.3s ease;
}

.col .links a::before {
  content: '';
  height: 16px;
  width: 3px;
  position: absolute;
  top: 5px;
  left: -10px;
  background-color: #e1b05e;
  transition: 0.5s ease;
  opacity: 0;
}

.col .links a:hover::before {
  opacity: 1;
}

.col .links a:hover {
  transform: translateX(-8px);
  color: #e1b05e;
}

.col .contact-details {
  display: inline-flex;
  justify-content: space-between;
}

.col .contact-details i {
  margin-right: 15px;
}

@media(max-width:900px) {
  .row2 {
    flex-direction: column;
  }

  .col {
    width: 100%;
  }
}

@media(max-width:768px) {

  .row2 {
    flex-direction: column;
    width: auto;
  }
  .row2 img{
    margin: auto;
  }

  .col {
    font-size: 14px;
    width: 90%;
    text-align: center;
  }

  .col .adres{
    margin: auto;
  }

  .footer-title{
    margin-left: 108px;
  }

  .col h3::after{
    left: 180px;
  }

  .col h3:hover::after {
    width: 50px
  }

  .col .footer-title{
    margin: auto;
  }
}
/*FOOTER*/

#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999; /* Diğer öğelerin üzerinde kalmasını sağlar */
}

#whatsapp-icon img {
  width: 70px; /* Logo boyutunu ayarlayın */
  height: 70px;
  border-radius: 50%; /* Yuvarlak logo */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Gölge efekti */
}
/*FOOTER*/
#whatsapp-icon:hover{
  transition: transform 0.08s ease-in-out;
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px #555); /* Gölge */
}


.hero-section {
    padding: 80px 20px;
    text-align: center;
    /* Arka plandaki hafif diyagonal çizgiler için */

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    margin-top: 80px;
    margin-bottom: -50px;
}

.container {
    max-width: 900px;
}

/* Üst Rozet (Badge) */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.badge:hover {
    transform: translateY(-2px);
}

/* Başlıklar */
.main-title {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #e1b05e; /* Görseldeki kırmızı/turuncu tonu */
}

/* Açıklama Metni */
.description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Teklif Al Butonu */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e1b05e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    background-color: #ecb350;
    box-shadow: 0 10px 20px #d6b06d;
}
.hero-section .container a {

  text-decoration: none;

}
.hero-section .container a:hover {
   color: rgb(0, 0, 0)

}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .main-title { font-size: 32px; }
    .description { font-size: 16px; }
}
.hero-bolumu {
    position: relative;
    width: 100%;
    height: 100vh; /* Ekranı tam kaplaması için */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    /* ARKA PLAN GIF URL'Sİ BURAYA GELECEK */
    /* linear-gradient ile üzerine hafif bir beyazlık ekleyerek örnekteki temiz görüntüyü sağlıyoruz */
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), 
                      url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExZnQ1bXltdzR0cTdwb3QzNzQyanhkc2w5MnFiMW1rZmt0b2owZ3pjcCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xUOxeSTrDP4vsF2TXq/giphy.gif');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-icerik {
    position: relative;
    z-index: 2; /* Yazıların GIF'in önünde kalmasını sağlar */
}

.altin-yazi {
    color: #d4a373; /* Asey logosuna uygun altın/bronz tonu */
    font-size: 3rem;
    font-weight: bold;
}

.teklif-butonu {
    background-color: #d4a373;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}