*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family: Arial, Helvetica, sans-serif;
  background:#f2f2f2;
  color:#222;
}

/* NAVBAR (Hamburger her cihazda) */
.navbar{
  background:#111;
  padding:14px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:999;
}

.nav-logo{
  height:46px;
  border-radius:10px;
}

.hamburger{
  background:transparent;
  border:none;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:8px;
}
.hamburger span{
  width:28px;
  height:3px;
  background:#fff;
  border-radius:6px;
}

/* Menü açılır kutu */
.nav-menu{
  list-style:none;
  display:none;
  position:absolute;
  top:68px;
  right:18px;
  background:#111;
  border-radius:12px;
  padding:14px 16px;
  min-width:190px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.nav-menu.show{display:flex;flex-direction:column;gap:12px;}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}
.nav-menu a:hover{color:#00bcd4;}

/* HERO */
.hero{
  height:70vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("hero.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:0 18px;
}

.hero-content h1{
  font-size:52px;
  letter-spacing:2px;
}
.hero-content p{
  margin-top:10px;
  font-size:18px;
  opacity:.95;
}

.hero-buttons{
  margin-top:18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  transition:.25s;
}
.btn.primary{background:#00bcd4;color:#000;}
.btn.primary:hover{background:#00a5bb;}
.btn.secondary{
  background:transparent;
  border:2px solid #fff;
  color:#fff;
}
.btn.secondary:hover{
  background:#fff;
  color:#000;
}

/* GENEL CONTAINER */
.container{
  max-width:1100px;
  margin:30px auto;
  padding:0 18px;
}

/* PAGE HEADER */
.page-header{
  background:#fff;
  padding:34px 18px 22px;
  text-align:center;
}
.page-header h1{
  font-size:38px;
  color:#111;
  margin-bottom:10px;
}
.page-header p{
  max-width:720px;
  margin:0 auto;
  color:#666;
  line-height:1.6;
}
.page-header::after{
  content:"";
  display:block;
  width:140px;
  height:4px;
  background:#00bcd4;
  margin:18px auto 0;
  border-radius:99px;
}

/* CONTENT CARD */
.content-card{
  background:#fff;
  border-radius:14px;
  padding:26px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.content-card h2{margin-bottom:10px;}
.content-card h3{margin-top:18px;margin-bottom:10px;}
.content-card p{line-height:1.7;color:#444;margin-bottom:10px;}
.nice-list{padding-left:18px;line-height:1.7;color:#444;}
.nice-list li{margin-bottom:8px;}

/* SERVICES */
.services{
  background:#fff;
  padding:70px 18px;
  text-align:center;
}
.services h2{
  font-size:36px;
  margin-bottom:35px;
}
.services-grid{
  display:flex;
  justify-content:center;
}
.service-card{
  background:#f9f9f9;
  padding:34px 28px;
  border-radius:14px;
  max-width:520px;
  width:100%;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:.25s;
}
.service-card:hover{transform:translateY(-5px);}
.service-card h3{font-size:22px;margin-bottom:12px;}
.service-card p{color:#555;line-height:1.6;}

/* MAP */
.map-section{
  background:#fff;
  padding:60px 18px;
  text-align:center;
}
.map-section h2{font-size:32px;margin-bottom:16px;}
.map-container{
  max-width:1000px;
  margin:0 auto;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
}
.map-container iframe{
  width:100%;
  height:350px;
  border:0;
  display:block;
}
.section-title{
  margin:18px 0 10px;
  text-align:left;
  font-size:24px;
}

/* Directions button */
.directions-btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 22px;
  border-radius:10px;
  background:#00bcd4;
  color:#000;
  font-weight:bold;
  text-decoration:none;
  transition:.25s;
}
.directions-btn:hover{background:#00a5bb;}

/* Contact card */
.contact-card{
  background:#fff;
  border-radius:14px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.contact-card p{
  margin-bottom:10px;
  line-height:1.6;
}
.contact-card a{
  color:#00bcd4;
  font-weight:bold;
  text-decoration:none;
}
.contact-card a:hover{text-decoration:underline;}

/* GALLERY */
.gallery-toolbar{
  text-align:center;
  margin:20px 0 14px;
}
.gallery-toolbar h2{font-size:28px;margin-bottom:6px;}
.gallery-toolbar p{color:#666;}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-bottom:50px;
}
.gallery-item{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.10);
  transition:.2s;
}
.gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(0,0,0,0.16);
}
@media (max-width:1100px){ .gallery-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:750px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} .gallery-item{height:190px;} }
@media (max-width:450px){ .gallery-grid{grid-template-columns:1fr;} .gallery-item{height:220px;} }

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.lightbox.open{display:flex;}
.lightbox-img{
  max-width:min(1100px, 95vw);
  max-height:85vh;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,0.40);
}
.lightbox-close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,0.12);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}
.lightbox-close:hover{background:rgba(255,255,255,0.20);}

/* FOOTER */
.footer{
  background:#111;
  color:#fff;
  padding:28px 18px 18px;
  margin-top:40px;
}
.footer-container{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}
.footer h3{margin-bottom:10px;}
.footer p{opacity:.9;line-height:1.6;margin-bottom:8px;}
.footer a{color:#00bcd4;text-decoration:none;font-weight:bold;}
.footer a:hover{text-decoration:underline;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:16px;
  padding-top:14px;
  text-align:center;
  font-size:14px;
  opacity:.85;
}

/* WhatsApp button */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  z-index:9999;
}
.whatsapp-float:hover{transform:scale(1.05);}

/* Responsive hero */
@media (max-width:650px){
  .hero-content h1{font-size:36px;}
}
