/* ======================================================== */
/* KUAFÖR FERİT - YÜKSEK KONTRAST LÜKS MİMARİ               */
/* ======================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 11px; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden; 
  line-height: 1.6;
}

/* ========================================= */
/* AÇILIŞ EKRANI                             */
/* ========================================= */
#loadingOverlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px; 
  max-width: 90%; 
  height: auto;
  padding: 3rem 2rem;
  background: #000000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #333333;
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.8), 0 20px 50px rgba(0,0,0,0.5);
}

.logo-img-large {
  width: 280px; 
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

#loadingOverlay .welcomeText {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  color: #ffffff;
}

#loadingOverlay .socials {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

#loadingOverlay .socials a {
  text-decoration: none;
  color: #ffffff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

#loadingOverlay .socials a:hover {
  color: #888888; 
  transform: translateY(-5px);
}

/* ========================================= */
/* HEADER                                    */
/* ========================================= */
header {
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(0, 0, 0, 0.95); 
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hamburger {
  font-size: 2.2rem;
  cursor: pointer;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
  color: #cccccc;
}

.header-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  height: 65px; 
  width: auto;
}

/* ========================================= */
/* MENÜ                                      */
/* ========================================= */
nav.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  max-width: 80vw; 
  height: 100vh;
  background: #000000;
  transform: translateX(-100%); 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 7rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}

nav.menu.active {
  transform: translateX(0);
}

nav.menu a {
  display: block;
  padding: 1.5rem 3rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav.menu a i {
  margin-right: 15px;
  color: #ffffff;
}

nav.menu a:hover {
  background: #ffffff;
  color: #000000;
  padding-left: 3.5rem;
}

nav.menu a:hover i {
  color: #000000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1040;
  backdrop-filter: blur(5px);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========================================= */
/* GALERİ (KIRMIZI ÇİZGİYE GÖRE AYARLANDI)   */
/* ========================================= */
.full-screen-gallery {
  width: 70%; 
  max-width: 1400px; 
  height: 80vh; 
  margin: 120px auto 50px auto; 
  position: relative;
  background: #000;
  border-radius: 25px; 
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3); 
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slides-container {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%; 
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Siyah boşlukları tamamen yok eder, çerçeveyi doldurur */
  object-position: center 20%; /* Ferit abinin kafası kesilmesin diye kamerayı biraz yukarı kaydırdık */
  opacity: 1; 
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.arrow:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.arrow-left { left: 30px; }
.arrow-right { right: 30px; }

#noImagesMessage {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
}

/* ========================================= */
/* BÖLÜNMÜŞ TASARIM                          */
/* ========================================= */
.split-design-section {
  display: flex;
  flex-wrap: wrap; 
  width: 100%;
  min-height: 80vh; 
  background: #ffffff;
  scroll-margin-top: 80px; 
}

.split-text, .split-image {
  flex: 1 1 100%; 
}

.split-text {
  padding: 8% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-line {
  width: 80px;
  height: 5px;
  background: #000000;
  margin-bottom: 30px;
}

.split-text p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.split-text strong {
  color: #000000;
  font-weight: 700;
}

.contact-info {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap; 
  font-weight: 600;
  color: #000000;
}

.contact-info i {
  color: #000000;
  margin-right: 8px;
  font-size: 1.2rem;
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 400px; 
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 900px) {
  .split-text, .split-image {
    flex: 1 1 50%;
  }
}

/* ========================================= */
/* YORUM EKRANI VE DİĞERLERİ                 */
/* ========================================= */
.full-screen-comment {
  width: 100%;
  min-height: 90vh;
  background: #0a0a0a; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
}

.comment-wrapper {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.comment-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.comment-subtitle {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.comment-form-container {
  background: #111111;
  padding: 3rem;
  border-radius: 0px; 
  border: 1px solid #222222;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-input,
.form-textarea {
  padding: 1.2rem;
  background: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  width: 100%; 
}

.form-input:focus,
.form-textarea:focus {
  border-color: #ffffff;
  outline: none;
  background: #050505;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  width: 100%; 
}

.submit-btn:hover {
  background: #cccccc;
}

.form-message {
  padding: 1rem;
  border-radius: 4px;
  display: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.error-message {
  display: block;
  background: rgba(211, 47, 47, 0.1);
  color: #ff5252;
  border: 1px solid #ff5252;
}

.success-message {
  display: block;
  background: rgba(21, 128, 61, 0.1);
  color: #4ade80;
  border: 1px solid #4ade80;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .split-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header-logo {
    height: 50px; 
  }
  .arrow {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
  .comment-form-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  #loadingOverlay {
    padding: 2rem 1rem;
  }
  .logo-img-large {
    width: 200px; 
  }
  .split-text {
    padding: 15% 5%;
  }
  .comment-wrapper h2 {
    font-size: 2rem;
  }
}

/* ========================================= */
/* YORUM YILDIZ SİSTEMİ STİLLERİ             */
/* ========================================= */
.star-rating-form {
  display: flex;
  gap: 10px;
  font-size: 2.5rem;
  color: #333333; 
  cursor: pointer;
  margin-bottom: 15px;
}
.star-rating-form i {
  transition: transform 0.2s ease, color 0.2s ease;
}
.star-rating-form i:hover {
  transform: scale(1.2);
}
.star-rating-form i.active {
  color: #f59e0b; 
}
.comment-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 5px;
  letter-spacing: 2px;
}