@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* Global Reset & Base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Lato', sans-serif; line-height:1.6; color:#333; background:#f9f9f9; }
a { text-decoration:none; color:inherit; }

/* Headings */
h1,h2,h3 { font-family:'Playfair Display', serif; }
h1 { font-size:3rem; }
h2 { font-size:2.2rem; color:#ff6b81; margin-bottom:30px; }
h3 { margin:0; }

/* Buttons */
.btn {
  padding:10px 40px;
  background: linear-gradient(45deg,#f9c0c0,#ff6b81);
  color:white;
  border-radius:50px;
  font-weight:bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: scale(1.05); box-shadow:0 0 15px rgba(255,107,129,0.5); }

/* Header */
.site-header {
  position: sticky;
  top:0;
  width:100%;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.3);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.site-header .container {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.logo {
  font-family:'Playfair Display', serif;
  font-size:1.5rem;
  color:#ff6b81;
  font-weight:bold;
}
.nav ul {
  display:flex;
  list-style:none;
  gap:30px;
}
.nav ul li a {
  font-weight:500;
  transition: all 0.3s ease;
}
.nav ul li a:hover {
  color:#ff6b81;
  transform: scale(1.05);
}
.hamburger { display:none; flex-direction: column; cursor:pointer; gap:5px; }
.hamburger span { display:block; width:25px; height:3px; background:#333; border-radius:3px; }

/* Hero */
.hero {
  position:relative;
  height:90vh;
  background: url('https://source.unsplash.com/1200x800/?wedding,dress') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  overflow:hidden;
}
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); z-index:1; }
.hero-text { position:relative; z-index:2; max-width:700px; animation:fadeIn 1.5s ease-in-out; }
.hero-text p { margin-bottom:20px; font-size:1.2rem; }

/* Featured Gallery */
.featured {
  text-align: center; /* Başlık ve button ortası için */
  display: flex;
  flex-direction: column;
  align-items: center; /* yatay ortalama */
  justify-content: center; /* dikey ortalama */
  padding: 60px 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px; /* gallery ve button arasına boşluk */
}

.featured .btn {
  margin-top: 20px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
  padding: 40px 20px;
}
.gallery .item { position: relative; border-radius: 15px; overflow: hidden; cursor:pointer; }
.gallery .item img { width:100%; height:400px; object-fit:cover; transition: transform 0.5s ease; }
.gallery .item:hover img { transform: scale(1.05); }
.overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.4s ease;
}
.gallery .item:hover .overlay { transform: translateY(0); }

/* Collection Section */
.collection {
  padding:60px 20px;
  text-align:center;
}
.collection-gallery {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}
.col-item {
  position:relative;
  overflow:hidden;
  border-radius:15px;
  cursor:pointer;
}
.col-item img { width:100%; transition: transform 0.4s ease; }
.col-item:hover img { transform: scale(1.1); }
.col-overlay {
  position:absolute;
  bottom:0; left:0; right:0;
  background: rgba(0,0,0,0.6);
  color:#fff;
  padding:15px;
  text-align:center;
  opacity:0;
  transition:opacity 0.4s ease;
}
.col-item:hover .col-overlay { opacity:1; }

/* Instagram Section */
.instagram {
  padding:50px 20px;
  text-align:center;
}
.insta-gallery {
  display:flex;
  justify-content:center;
  gap:15px;
  margin:20px 0;
}
.insta-gallery img {
  width:120px; height:120px; object-fit:cover; border-radius:10px;
  transition:transform 0.3s;
}
.insta-gallery img:hover { transform:scale(1.1); }

/* Google Reviews */
.google-reviews { padding:50px 20px; background:#f1f1f1; text-align:center; }
.google-reviews h2 { margin-bottom:30px; color:#ff6b81; }

.reviews {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.review {
  background:rgba(255,255,255,0.9);
  padding:20px;
  border-radius:15px;
  width:300px;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.review:hover { transform:translateY(-5px); }

.review-header { display:flex; gap:15px; align-items:center; margin-bottom:10px; }

.avatar {
  width:50px; height:50px; border-radius:50%; object-fit:cover;
}

.review-info h3 { font-size:1.1em; margin-bottom:2px; color:#333; }
.review-info span { font-size:0.85em; color:#999; }
.stars { color:#FFD700; font-size:1em; }
.review p { font-size:0.9em; color:#555; margin-top:10px; line-height:1.4; }

/* About Section */
.about { max-width:800px; margin:auto; font-size:1.1rem; padding:60px 20px; }

/* Footer */
footer {
  background:#f8f0f0;
  padding:40px 20px;
  text-align:center;
}
footer a { color:#ff6b81; transition: all 0.3s ease; }
footer a:hover { color:#ff3b61; text-decoration:underline; }

/* Animations */
@keyframes fadeIn { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

/* Responsive */
@media(max-width:1024px) {
  h1{font-size:2.5rem;} h2{font-size:1.8rem;}
}
@media(max-width:768px) {
  .hero{height:70vh;} h1{font-size:2rem;} h2{font-size:1.5rem;}
  .gallery{grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:15px;}
  .collection-gallery{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));}
  .insta-gallery{flex-wrap:wrap; justify-content:center;}
}
@media(max-width:480px) {
  h1{font-size:1.5rem;} h2{font-size:1.2rem;}
  .hero{height:60vh;}
  .gallery .item img{height:300px;}
}
.social-icons {
  display: flex;
  gap: 10px; /* ikonlar arası boşluk */
}

.social-icons img {
  width: 40px; /* ikon boyutu */
  height: 40px;
  object-fit: cover; /* görselin kırpılmadan görünmesi */
  border-radius: 8px; /* istersen hafif yuvarlat */
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1); /* hover efekti */
}
/* Hero Contact */
.hero-contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 80vh;
  background: linear-gradient(to bottom, #fff0f0, #ffe8e8);
}

.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  z-index: 1;
}

.contact-card {
  position: relative;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  max-width: 500px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.contact-card h1 {
  font-family: 'Playfair Display', serif;
  color: #ff6b81;
  margin-bottom: 15px;
  font-size: 2rem;
}

.contact-card p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #ff6b81;
  background: #fff;
  padding: 0 4px;
}

.contact-card .btn {
  width: 100%;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 0.95rem;
  color: #333;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #ff6b81;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.hero-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 50vh;
  background: linear-gradient(to bottom, #fff0f0, #ffe8e8);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  z-index: 1;
}

.hero-gallery-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-gallery-text h1 {
  font-family: 'Playfair Display', serif;
  color: #ff6b81;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.hero-gallery-text p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.hero-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 40vh;
  background: linear-gradient(to bottom, #fff0f0, #ffe8e8);
  text-align: center;
}
.map-container {
  width: 70%;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

section.map {
  padding: 60px 20px;
  text-align: center;
}

section.map h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff6b81;
}
.lightbox-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.8);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2000;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity:1;
  pointer-events:auto;
}

.lightbox-overlay img {
  max-width:90%;
  max-height:80vh;
  border-radius:10px;
  box-shadow:0 0 30px rgba(0,0,0,0.6);
  animation: fadeIn 0.4s ease;
}
/* Lightbox kapatma butonu */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2100; /* overlay içindeki resimden önde olsun */
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: #ff6b81; /* hover rengini pembe yaptık */
}
.whatsapp-float {
  background: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   transition: transform 0.3s, background 0.3s;
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
  display: block;
}

.whatsapp-float:hover {
  background: #20b358;
  transform: scale(1.1);
}
.logo-text {
  font-family: 'Dancing Script', cursive;
  font-weight: 600; 
  font-size: 2rem;
  color: #FF6F91;  
}
