/* ===================== */
/* ✅ Font Tanımları     */
/* ===================== */

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('assets/fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('assets/fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ===================== */
/* ✅ Genel Reset ve Tema */
/* ===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comfortaa', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}

/* ===================== */
/* ✅ Temel Yapılar      */
/* ===================== */

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  color: #007BFF;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== */
/* ✅ Özel Sınıflar      */
/* ===================== */

.highlight {
  font-family: 'SpaceGrotesk', sans-serif;
  font-style: italic;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

/* ===================== */
/* ✅ Geçici Yardımcı Kod*/
/* ===================== */

section {
  padding: 60px 0;
}


/* ========================= */
/* 🔷 HEADER & NAVBAR */
/* ========================= */

header {
  background-color: #d4af37;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Masaüstü Menü */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #ffffff;
  font-weight: bold;
  font-family: 'Comfortaa', sans-serif;
  transition: 0.3s;
  font-size: 15px;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #0f62fe;
}

/* Hamburger ikon */
.hamburger {
  display: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1001;
}

/* ✅ Mobil Menü */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #d4af37; /* Aynı renk */
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    padding: 100px 30px;
    gap: 30px;
    z-index: 1000;
    transition: right 0.4s ease-in-out;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 20px;
    color: white;
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
}

/* Masaüstü için hamburgeri gizle */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* ===================== */
/* 🔷 HERO STİLİ        */
/* ===================== */

.hero {
  background-color: #f9f9f9;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #0f62fe;
  color: #fff;
  font-size: 16px;
}

.hero .btn:hover {
  background-color: #0039cb;
}




/* ===================== */
/* 🔷 FOOTER STİLİ      */
/* ===================== */

footer {
  background-color: #111;
  color: #ffffff;
  padding: 50px 0 20px;
  font-family: 'Comfortaa', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Cinzel', serif;
  color: #d4af37; /* Gold */
  margin-bottom: 10px;
  font-size: 30px;
}

.footer-section p,
.footer-section ul li {
  color: #ccc;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #ccc;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #0f62fe; /* Teknolojik Mavi */
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 10px;
  text-align: center;
  font-size: 20px;
  color: #777;
}

/* Kesin çözüm: sayfa yüksekliği ve boşlukları sıfırla */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9; /* senin hero kısmının arka planı */
}

main {
  flex: 1;
}

/* Footer'ı en alta sabitler */
footer {
  margin-top: auto;
}

.footer-section ul li a:hover {
  color: #d4af37; /* gold hover */
}


@media (max-width: 768px) { /* tablet ve telefon */ }
@media (max-width: 480px) { /* sadece telefon */ }


/* Referans Sayfası*/
.references-page {
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
}

.reference-intro h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.reference-intro p {
  text-align: center;
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}

/* iletişim sayfası */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 40px 20px;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #eeeeee 50%, #dddddd 100%);
  border-radius: 15px;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.form-container, .info-container {
  flex: 1 1 450px;
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.form-container h2 {
  margin-top: 0;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.submit-btn {
  background-color: #00bcd4;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn:hover {
  background-color: #0097a7;
}

.info-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.contact-info p {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  color: #333;
  word-break: break-word;
}

.contact-info .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px 10px;
  }

  .form-container, .info-container {
    padding: 20px 16px;
  }

  .form-container h2 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .submit-btn {
    font-size: 15px;
  }
}
/* Hizmetler Sayfası */

.services-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
  background: #f5f5f5;
  font-family: 'Space Grotesk', sans-serif;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #c29e42;
}

.services-header p {
  font-size: 18px;
  color: #666;
}

.service-category {
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  padding: 30px;
}

.service-category h2 {
  color: #c29e42;
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Accordion Buton */
.accordion {
  width: 100%;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  padding: 16px 20px;
  border: 1px solid #ddd;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion:hover {
  background-color: #f5f5f5;
}

.accordion.active {
  background-color: #f0f0f0;
}

.accordion {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  text-align: left;
  border: 1px solid #ddd;
  outline: none;
  font-size: 18px;
  transition: background-color 0.3s;
  border-radius: 6px;
  margin-bottom: 10px;
}

.accordion:hover {
  background-color: #f0f0f0;
}

.accordion.active {
  background-color: #eaeaea;
}

.panel {
  padding: 0 16px;
  background-color: #fafafa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border: 1px solid #eee;
  border-top: none;
  margin-bottom: 10px;
  border-radius: 0 0 6px 6px;
}

/* Mobil Uyum */
@media screen and (max-width: 768px) {
  .services-section {
    padding: 30px 15px;
  }

  .services-header h1 {
    font-size: 28px;
  }

  .accordion {
    font-size: 16px;
    padding: 14px 16px;
  }

  .panel {
    font-size: 15px;
  }

  .service-category {
    padding: 20px;
  }

  .service-category h2 {
    font-size: 20px;
  }
}

  /* Hakkımda Sayfası CSS */

.about-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f6f6f6, #eaeaea);
}

.profile-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #444;
}

.about-section .quote {
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
}

.about-section .bio,
.about-section .whyme {
  max-width: 600px;
  margin: 10px auto;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

/* ekip */

.team-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #222;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  width: 250px;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.team-member p {
  font-size: 15px;
  font-weight: bold;
  color: #666;
  margin-bottom: 8px;
}

.team-member span {
  font-size: 14px;
  color: #777;
}


/* ✅ Genel Ayarlar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✅ Hero Bölümü */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('assets/images/hero.jpg') center/cover no-repeat;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #111;
  font-weight: 500;
}

.hero .btn {
  background-color: #d4af37;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.hero .btn:hover {
  background-color: #b58f20;
}

/* ✅ Hakkımda Kartı */
.about-section {
  text-align: center;
  padding: 80px 20px;
  background-color: white;
}

.about-section img {
  width: 180px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ✅ Hizmet Kartları */
.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  width: 300px;
  padding: 30px;
  text-align: center;
}

.service-card img {
  width: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #666;
}

/* ✅ Referans Galerisi */
.referanslar-section {
  padding: 80px 20px;
  text-align: center;
  background-color: white;
}

.referanslar-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.referanslar-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.referanslar-gallery img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.testimonials-section {
  background: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  font-style: italic;
  font-size: 18px;
}

.testimonial h4 {
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

/* ✅ CTA */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #d4af37, #ffd700);
  color: black;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section .btn {
  background: black;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.cta-section .btn:hover {
  background: #222;
}

/* ✅ Mobil */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .about-section h2,
  .services-section h2,
  .referanslar-section h2,
  .cta-section h2 {
    font-size: 28px;
  }
  .service-card {
    width: 90%;
  }
  .referanslar-gallery img {
    width: 90%;
  }
}