*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Montserrat",sans-serif;
  background:#111111;
  color:white;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
video{
  width:100%;
  display:block;
}

/* LOADER */

.loader{
  position:fixed;
  inset:0;
  background:#111111;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:1s ease;
}

.loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  animation:loaderAnim 2s ease infinite;
}

.loader-card img{
  width:180px;
  filter:
  drop-shadow(0 0 40px rgba(216,176,123,.25));
}

.loader-card span{
  color:#f4e7d3;
  letter-spacing:5px;
  font-size:14px;
  text-transform:uppercase;
}

@keyframes loaderAnim{

  0%{
    transform:scale(.96);
    opacity:.7;
  }

  50%{
    transform:scale(1.03);
    opacity:1;
  }

  100%{
    transform:scale(.96);
    opacity:.7;
  }

}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:84px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:9999;
  background:rgba(17,17,17,.38);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.logo-area img{
  width:74px;
  border-radius:18px;
  transition:.35s ease;
  filter:
  drop-shadow(0 0 18px rgba(216,176,123,.16));
}

.logo-area img:hover{
  transform:scale(1.05) rotate(-2deg);
}

nav{
  display:flex;
  align-items:center;
  gap:34px;
}

nav a{
  position:relative;
  color:rgba(255,255,255,.72);
  font-size:14px;
  transition:.3s ease;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:1px;
  background:#d8b07b;
  transition:.3s ease;
}

nav a:hover{
  color:#f4e7d3;
}

nav a:hover::after{
  width:100%;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:24px;
}

.mobile-menu{
  position:fixed;
  top:84px;
  left:0;
  width:100%;
  background:#181818;
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:24px;
  transform:translateY(-130%);
  transition:.4s ease;
  z-index:999;
}

.mobile-menu.active{
  transform:translateY(0);
}

.mobile-menu a{
  color:white;
  font-size:15px;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 7% 90px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:url("hero.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.08);
  animation:bgZoom 18s ease-in-out infinite alternate;
}

@keyframes bgZoom{

  from{
    transform:scale(1.03);
  }

  to{
    transform:scale(1.14);
  }

}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    90deg,
    rgba(17,17,17,.95),
    rgba(32,24,20,.72),
    rgba(17,17,17,.25)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
}

.mini-text{
  display:inline-block;
  margin-bottom:22px;
  color:#d8b07b;
  letter-spacing:4px;
  font-size:13px;
  text-transform:uppercase;
}

.hero-content h1{
  font-size:92px;
  line-height:.95;
  margin-bottom:28px;
  font-family:"Cormorant Garamond",serif;
  font-weight:700;
  color:#fdfaf6;
}

.hero-content p{
  font-size:17px;
  line-height:2;
  color:rgba(255,255,255,.78);
  max-width:650px;
  margin-bottom:40px;
}
.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn{
  padding:18px 38px;
  border-radius:100px;
  background:linear-gradient(
    135deg,
    #f4e7d3,
    #d8b07b
  );
  color:#111111;
  font-weight:600;
  transition:.35s ease;
  box-shadow:0 18px 45px rgba(216,176,123,.22);
}

.primary-btn:hover{
  transform:translateY(-5px);
}

.secondary-btn{
  padding:18px 38px;
  border-radius:100px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
  transition:.35s ease;
}

.secondary-btn:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-5px);
}

/* WHATSAPP */

.whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#25d366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 20px 45px rgba(37,211,102,.35);
  transition:.35s ease;
}

.whatsapp:hover{
  transform:translateY(-6px) scale(1.05);
}

/* GENEL */

section{
  padding:120px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#d8b07b;
  letter-spacing:4px;
  font-size:13px;
  text-transform:uppercase;
}

.section-title h2{
  margin-top:18px;
  font-size:58px;
  line-height:1.1;
  font-family:"Cormorant Garamond",serif;
  color:#fdfaf6;
}

/* ABOUT */

.about{
  background:#161616;
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-text p{
  font-size:16px;
  line-height:2;
  color:rgba(255,255,255,.74);
  margin-bottom:28px;
}

.text-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:17px 34px;
  border-radius:100px;
  background:#d8b07b;
  color:#111111;
  font-weight:600;
  transition:.35s ease;
}

.text-btn:hover{
  transform:translateY(-5px);
}

.about-image img{
  height:680px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 30px 60px rgba(0,0,0,.45);
}

/* SERVICES */

.services{
  background:#111111;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}

.service-card{
  padding:38px 28px;
  border-radius:28px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:rgba(216,176,123,.24);
  background:rgba(255,255,255,.05);
}

.service-card i{
  font-size:38px;
  color:#d8b07b;
  margin-bottom:24px;
}

.service-card h3{
  font-size:24px;
  margin-bottom:16px;
  font-family:"Cormorant Garamond",serif;
  color:#fdfaf6;
}

.service-card p{
  color:rgba(255,255,255,.68);
  line-height:1.9;
  font-size:14px;
}

/* WHY US */

.why-us{
  background:#161616;
}

.why-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.why-card{
  padding:50px;
  border-radius:32px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  transition:.4s ease;
}

.why-card:hover{
  transform:translateY(-10px);
  border-color:rgba(216,176,123,.24);
}

.why-card i{
  font-size:44px;
  color:#d8b07b;
  margin-bottom:28px;
}

.why-card h3{
  font-size:30px;
  margin-bottom:18px;
  font-family:"Cormorant Garamond",serif;
}

.why-card p{
  line-height:2;
  color:rgba(255,255,255,.72);
}
/* GALLERY */

.gallery{
  background:#111111;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  grid-auto-rows:270px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
}

.gallery-item img,
.gallery-item video{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.7s ease;
}

.gallery-item:hover img,
.gallery-item:hover video{
  transform:scale(1.08);
}

.gallery-item.big{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

/* CTA */

.cta{
  position:relative;
  overflow:hidden;
  background-image:url("hero.jpg");
  background-size:cover;
  background-position:center;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    180deg,
    rgba(17,17,17,.84),
    rgba(17,17,17,.9)
  );
}

.cta-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:auto;
}

.cta-content span{
  color:#d8b07b;
  letter-spacing:4px;
  font-size:13px;
  text-transform:uppercase;
}

.cta-content h2{
  margin:24px 0;
  font-size:74px;
  line-height:1.05;
  font-family:"Cormorant Garamond",serif;
  color:#fdfaf6;
}

.cta-content p{
  color:rgba(255,255,255,.76);
  line-height:2;
  margin-bottom:38px;
}

.cta-content a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 38px;
  border-radius:100px;
  background:linear-gradient(
    135deg,
    #f4e7d3,
    #d8b07b
  );
  color:#111111;
  font-weight:600;
  transition:.35s ease;
}

.cta-content a:hover{
  transform:translateY(-5px);
}

/* CONTACT */

.contact{
  background:#161616;
}

.contact-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-bottom:50px;
}

.contact-card{
  padding:55px 30px;
  border-radius:30px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
  transition:.35s ease;
}

.contact-card:hover{
  transform:translateY(-8px);
  border-color:rgba(216,176,123,.22);
}

.contact-card i{
  font-size:42px;
  color:#d8b07b;
  margin-bottom:24px;
}

.contact-card h3{
  font-size:28px;
  margin-bottom:14px;
  font-family:"Cormorant Garamond",serif;
}

.contact-card p{
  color:rgba(255,255,255,.72);
  line-height:1.9;
}

.map-area iframe{
  width:100%;
  height:480px;
  border:none;
  border-radius:32px;
}

/* FOOTER */

footer{
  padding:70px 7%;
  border-top:1px solid rgba(255,255,255,.06);
  background:#111111;
  text-align:center;
}

footer img{
  width:88px;
  margin:auto;
  margin-bottom:24px;
}

footer p{
  color:rgba(255,255,255,.56);
}

.footer-socials{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:28px;
}

.footer-socials a{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.35s ease;
}

.footer-socials a:hover{
  background:#d8b07b;
  color:#111111;
  transform:translateY(-5px);
}

/* ANIMATION */

.hidden{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBİL */

@media(max-width:1200px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:1100px){

  nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .hero-content h1{
    font-size:68px;
  }

  .about-container,
  .why-container,
  .contact-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  header{
    padding:0 5%;
  }

  section{
    padding:90px 5%;
  }

  .hero{
    padding:150px 5% 90px;
  }

  .hero-content h1{
    font-size:50px;
  }

  .hero-content p{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .primary-btn,
  .secondary-btn{
    justify-content:center;
    text-align:center;
  }

  .section-title h2{
    font-size:42px;
  }

  .cta-content h2{
    font-size:46px;
  }

  .services-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item.big,
  .gallery-item.wide{
    grid-column:span 1;
    grid-row:span 1;
  }

  .about-image img{
    height:420px;
  }

  .map-area iframe{
    height:340px;
  }

}