html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x:hidden;
}

header {
  background: white;
  position: sticky;  
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  
  padding: 0 40px;


  max-width: 1200px;
  margin: auto;
}




/* hamburger gizli (desktop) */
.menu-toggle {
  margin-left: auto;
  /* sağa iter */
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.close-menu {
  display: none;
  /* EN ÖNEMLİ */
  color: #eeeaea;
}


.nav-links a.active {
  color: #C48197 !important;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;

  max-height: 90px;
  max-width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  /*margin gibi exstra boşluk eklemeden halleder*/
}

.nav-links a {
  text-decoration: none;
  color: #333;
  position: relative;
  /*alt çizginin referansı(absulute)*/
  transition: 0.3s;
  /*transition burada çünkü hoverda olsaydı sadece üzerine geldiğinde çalışırdı.*/
  font-size: 18px;
  font-weight: 500;
}

/* Hover efekti */
.nav-links a:hover {
  color: #C48197;
}

/* Alt çizgi animasyon */
.nav-links a::after {
  content: "";
  /*before, after yazarken content belirtmek zorunlu, fakat burada şekil oluşturuyoruz o yüzden boş*/
  position: absolute;
  width: 0;
  height: 2px;
  /*alt çizgi kalınlığı*/
  background: #C48197;
  left: 0;
  bottom: -5px;
  /*alt çizgi ve yazı arasındaki boşluk*/
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}




@media (max-width: 768px) {

  .menu-toggle {
    display: block; /* hamburger görünür */
  }

  
  .logo img {
    max-height: 60px;
    max-width: 90px;
  }

   .nav-links a {
    font-size: 16px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    list-style: none;
    padding-top: 80px;
    padding-left: 40px;
    margin: 0;
    width: 75%;
    max-width: 260px;
    height: 100vh;
    overflow-y: auto;

    background: #1E1E1E;
    text-align: left;
    gap: 25px;
    flex-direction: column;
   
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-links li {
    width: 100%;
    max-width: 200px;
    min-width: 0;
    text-align: left;
    padding: 1px 0;
    border-bottom: 0.3px solid #dcd5d5;
    display: flex;
    justify-content: left;
    margin: 1px 0;

  }

  .nav-links a {
    display: inline-block;
    text-align: left;
  }

  .nav-links li a {
    color: white;
  }

.nav-links a.active {
  color: #C48197 ;
}


  .nav-links li:last-child {
  border-bottom: none;
}

  .nav-links.active {
    right: 0;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    font-size: 28px;
    cursor: pointer;
  }
  .menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
  z-index: 998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;

}
}














/* HERO GENEL */
.hero {
  display: flex;
  justify-content: center;
  /* yatay */
  align-items: center;
  /* dikey */
  text-align: center;
  position: relative;
  max-height: 100vh;
  overflow: hidden;
}

/* slider */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: 1s;
}

.hero img {
  max-height: 100vh;
}


@media (max-width:768px){

  .hero h1{
    font-size: 28px;
    line-height: 1.05;
  }

  .hero img{
    width:100%;
    max-height: auto;
  }

  .hero p{
    font-size: 14px;}


  header{
    padding: 8px 16px;
  }

}



.slide.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  /*en yakın positiona göre konumlanır, burada .hero'ya göre*/
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* 🔥 biraz daha koyu yaptık */
  z-index: 1;
}

/* içerik */
.hero-content {
  position: relative;
  z-index: 2;
  /*sliderın üstünde görünmesi için*/
  color: white;
  padding: 200px 100px 100px 100px;
}


/* BAŞLIK */
.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);

}



/* ALT YAZI */
.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.contact-bar {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 150px;
  margin-bottom: 30px;
}

.contact-bar a {
  font-family: Raleway;
}

/* 📞 TELEFON */
.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #F5F5F5;
  text-decoration: none;
  
  transition: 0.3s;
}

.contact-phone span {
  display: flex;
  font-size: 16px;
  line-height: 1.3;
}

.contact-phone .icon {
  font-size: 16px;
}

@media (max-width: 768px) {

  .contact-phone {
    gap: 4px;
  }

  .contact-phone span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    max-width: 80px;
  }

  .contact-phone .icon {
    font-size: 12px;
  }

}


.contact-phone:hover {
  color: #ba7089eb;
}

/* 💬 WHATSAPP BUTON */
.contact-whatsapp{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 26px;
    border-radius: 50px;

    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;

    background: rgba(218, 178, 185, 0.18);
    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(182, 138, 145, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.35);

    transition: all .35s ease;
}

.contact-whatsapp img{
    width: 22px;
    height: 22px;
    transition: transform .35s ease;
}

.contact-whatsapp:hover{
    transform: translateY(-3px);
    background: rgba(227, 190, 196, 0.28);
    border-color: rgba(255,255,255,.5);

    box-shadow:
        0 18px 40px rgba(182,138,145,.25),
        inset 0 1px 0 rgba(255,255,255,.45);
}

.contact-whatsapp:hover img{
    transform: scale(1.08);
}

.contact-whatsapp:active{
    transform: translateY(-1px);
}













.contact-wp {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 26px;

    background: rgba(255, 247, 244, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;

    text-decoration: none;
    color: #6f5b55;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;

    box-shadow:
        0 10px 35px rgba(188, 151, 138, 0.12),
        inset 0 1px 0 rgba(255,255,255,.45);

    transition: all .35s ease;
}

.contact-wp img{
    width:20px;
    height:20px;
    transition:transform .35s ease;
}

.contact-wp:hover{
    transform:translateY(-3px);
    background:rgba(255,249,246,.5);

    border-color:rgba(255,255,255,.75);

    box-shadow:
        0 18px 45px rgba(188,151,138,.20),
        inset 0 1px 0 rgba(255,255,255,.55);
}

.contact-wp:hover img{
    transform:scale(1.08);
}

.contact-wp:active{
    transform:translateY(-1px);
}









.location {
  display: block;
  text-align: center;
  margin-top: 20px;

  color: #CFCFCF;
  font-size: 16px;
  text-decoration: none;

  transition: 0.3s;
}

@media (max-width:768px){
  .location {
    font-size: 14px;
  }
}

.location:hover {
  color: #C48197;
}























#services {
  text-align: center;
  font-size: 18px;
  padding: 250px 20px;
}

#services h2 {
  margin-bottom: 80px;
  text-decoration-line: overline;
  text-decoration-color: #C48197;
  font-size: 25px;
}

@media (max-width: 768px) {
  #services {
    padding: 200px 20px;
  }

  #services h2 {
    margin-bottom: 50px;
    font-size: 22px;
  }
}

.service-card h3 {
  margin-bottom: 10px;
  color: #C48197;
}

.services-container {
  display: grid;
  /* 3 sütunlu bir grid yapısı oluşturuyoruz */
  grid-template-columns: repeat(3, 1fr);
  /*3 sütun oluştur, her biri eşit genişlikte (1fr)*/
  gap: 30px;
  margin-top: 40px;
  max-width: 1100px;
  /* 👈 genişliği sınırla. eleman ekranla birlikte küçülür*/
  margin: 40px auto;
  /* 👈 kutuyu ORTALAR 🔥 */
}

@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 sütun yapar */
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
    /* tek sütun yapar */
    justify-items:center;
  }

   .services{
    padding:80px 35px;
  }

   
    .service-card{
    width:90%;
    max-width:300px;
    margin-bottom:45px;
  }

  .service-card img{
    width:100%;
    display:block;
    border-radius:20px;
  }

  
}

.service-card {
  background: rgb(255, 254, 254);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

/* hover 🔥 */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  /* kartı doldurur */
  height: 280px;
  /* sabit yükseklik */
  object-fit: cover;
  /* kırpma ama bozulmaz */
  border-radius: 10px;
  /* yumuşak köşe */
  margin-bottom: 15px;
  /* yazıdan boşluk */
  transition: 0.4s;
}









#about {
  padding: 100px 20px;
  background: #FFF5F5;
  overflow: hidden;
}

/* ÜST BAŞLIK */
.about-title h2 {
  margin-top: 80px;
  margin-bottom: 80px;
  text-decoration-line: overline;
  text-decoration-color: #C48197;
  text-align: center;
  font-size: 25px;
}


.about-text h2 {
  font-size: 32px;
  color: #333;
  font-family: 'Prata', serif;
  margin-left: 10px;
  margin-bottom: 40px;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 200px;
}

/* FOTO */
.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  align-items: center;
  margin-left: auto;
}

/* YAZI */
.about-text {
  margin-top: 20px;
  font-size: 17px;
  max-width: 500px;
  text-align: start;
}

.about-text p {
  margin-bottom: 15px;
  color: #464545;
  line-height: 1.6;
}

/* LİSTE */
.about-text ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.about-text li {
  margin-bottom: 10px;
  color: #333;
}


@media (max-width: 768px) {

  #about {
    padding: 40px 20px;
  }

  .about-title h2 {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 60px;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 22px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    margin-left: 0;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-text ul {
    margin-top: 25px;
  }

  .about-text li {
    font-size: 15px;
  }
}













/*galeri*/


#gallery-hero {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("photos/galeri2.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 0;
}





.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 160px 40px;
}
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
    /* 2 sütun yapar */
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    /* tek sütun yapar */
  }
}
.gallery-container img {
  width: 100%;
  max-width: 600px;
  max-height: 280px;
  border-radius: 10px;
  transition: 0.4s;
}

/* YUMUŞAK ZOOM */
.gallery-container a {
  overflow: hidden;
  position: relative;
}

.gallery-container img:hover {
  transform: scale(1.05);
}





.gallery-container a::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 30px;
  color: white;
  opacity: 0;
  transition: 0.3s;
}

.gallery-container a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s;
}

.gallery-container a:hover::before,
.gallery-container a:hover::after {
  opacity: 1;
}

/*galeri*/









#home-gallery {
  padding: 100px 20px;
  text-align: center;
  background: #FFF5F5;
}

#home-gallery h2 {
  margin-bottom: 70px;
  margin-top: 30px;
  text-decoration-line: overline;
  text-decoration-color: #C48197;
  text-align: center;
  font-size: 25px;
}

@media (max-width: 768px) {
  #home-gallery {
    padding: 180px 20px;
  }

  #home-gallery h2 {
    margin-bottom: 50px;
    font-size: 22px;
  }
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FOTO */
.gallery-grid img {
  width: 100%;
  max-width: 600px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
  cursor: pointer;

}

/* SOFT ZOOM */
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* BUTON */
.gallery-btn {
  display: inline-block;
  /* link gibi davranır */
  margin-top: 40px;
  padding: 12px 25px;
  background: #C48197;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.gallery-btn:hover {
  background: #B66681;
  transform: translateY(-2px);
}













#testimonials {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

#testimonials h2 {
  margin-bottom: 50px;
  text-decoration-line: overline;
  text-decoration-color: #C48197;
  text-align: center;
  font-size: 25px;
}

@media (max-width: 768px) {
  #testimonials {
    padding: 180px 20px;
  }

  #testimonials h2 {
    margin-bottom: 50px;
    font-size: 22px;
  }
}


/* container */
.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  /* Sığmayan elemanlar alt satıra geçer */
}

/* kart */
.testimonial {
  background: #FFF5F5;
  padding: 25px;
  border-radius: 15px;
  max-width: 300px;
  transition: 0.3s;
  /* Hareketin yumuşak olması için şart! */
}

/* hover */
.testimonial:hover {
  transform: translateY(-5px);
  /* Üstüne gelince 5px yukarı kalkar */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* yazılar */
.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial h4 {
  margin-bottom: 10px;
  color: #333;
}

/* yıldız */
.stars {
  color: #d7c039;
  font-size: 18px;
}













#contact {
  padding: 80px 20px;
  background: #FFF5F5;
  text-align: center;
}

#contact h2 {
  margin-bottom: 80px;
  text-decoration-line: overline;
  text-decoration-color: #C48197;
  text-align: center;
  font-size: 25px;
}

@media(max-width: 768px){
  #contact h2 {
    margin-bottom: 50px;
    font-size: 22px;
  }
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;

  max-width: 1100px;
  margin: auto;
}

/* KUTULAR */
.contact-box {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

/* BAŞLIK */
.contact-box h3 {
  margin-bottom: 15px;
  color: #b4788c;
}

/* YAZI */
.contact-box p {
  margin-bottom: 10px;
  color: #333;
}









/*footer*/

#footer {
  background: #1E1E1E;
  color: #fff;
  padding: 60px 20px 20px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Sığmayan elemanlar alt satıra geçer */
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* KUTULAR */
.footer-box {
  flex: 1;
  /* tüm kutular eşit genişlikte olur */
  min-width: 200px;
}

/* BAŞLIKLAR */
.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: #C48197;
}

/* LİNKLER */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #C48197;
}

.footer-box img {
  max-width: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-box img:hover {
  transform: scale(1.2);
}

/* ALT KISIM */
.footer-bottom {
  text-align: center;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 14px;
  font-size: 18px;
  color: #aaa;
}

.signature {
  text-decoration: overline;
  text-decoration-color: #000000;
  font-size: 14px;
  color: #555;
}