 /* Temel CSS */
 body {
   margin: 0;
   font-family:Arial, Helvetica, sans-serif;
   line-height: 1.6;
   font-size: large;
   color: #333;
       background-color: #f9f9f9;
 }

 a {
   text-decoration: none;
   color: inherit;
 }

 /* Genel ayarlar */
 header {
   background: #fff;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   position: sticky;
   top: 0;
   z-index: 1000;
   height: 100px;
 }

 .container {
   max-width: 1200px;
   margin: auto;
   padding: 0 20px;
 }

 nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0;
 }

 /* Logo grubu */
 nav .logo {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .logo img {
   height: 80px;
   width: auto;
   display: flex;
   align-items: center;
   filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
 }

 .logo .brand {
   text-decoration: none;
   color: #CB9B37;
   font-size: 24px;
   font-weight: bold;
   white-space: nowrap;
 }

 /* Menü (Desktop) */
 .nav-menu {
   display: flex;
   gap: 20px;
   list-style: none;
 }

 .container nav {
 position: relative;
 }

 .nav-menu li a:hover {
   color: #cb9b37;
 }

 /* HAMBURGER BTN (Mobilde görünür) */
 .menu-toggle {
   display: none;
   font-size: 30px;
   cursor: pointer;
   user-select: none;
 }

 /* -------------------- */
 /* RESPONSIVE KISIM     */
 /* -------------------- */

 @media (max-width: 768px) {

   .menu-toggle {
     display: block;
     /* hamburger görünür */
   }

   .nav-menu {
     position: absolute;
     top: 70px;
     /* navbarın altından açılsın */
     right: 20px;
     background: #fff;
     flex-direction: column;
     gap: 15px;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

     /* Başlangıçta kapalı */
     opacity: 0;
     pointer-events: none;
     transform: translateY(-10px);
     transition: .3s ease;
   }

   /* Menü Açıkken */
   .nav-menu.active {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
   }
 }

 /* Hero bölümü */
 /* HERO (Arka plan görselli versiyon) */
 .hero-anasayfa {
   position: relative;
   background: url('/images/goldfinch-header-anasayfa.png') center/cover no-repeat;
   color: #fff;
   padding: 120px 20px;
   text-align: center;
 }

 /* Karanlık filtre efekti */
 .hero-anasayfa::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* koyu şeffaf katman */
   z-index: 0;
 }

 /*hizmetler hero*/
  .hero-hizmetler {
   position: relative;
   background: url('/images/hizmetler-hero.jpg') center/cover no-repeat;
   color: #fff;
   padding: 120px 20px;
   text-align: center;
 }

 /* Karanlık filtre efekti */
 .hero-hizmetler::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* koyu şeffaf katman */
   z-index: 0;
 }

 /* hero hakkımızda*/
   .hero-hakkımızda{
   position: relative;
   background: url('/images/hakkimizda.jpg') center/cover no-repeat;
   color: #fff;
   padding: 120px 20px;
   text-align: center;
 }

 /* Karanlık filtre efekti */
 .hero-hakkımızda::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* koyu şeffaf katman */
   z-index: 0;
 }

 

 /* İçerik */
 .hero-text {
   position: relative;
   z-index: 1;
   max-width: 700px;
   margin: 0 auto;
 }

 .hero-text h1 {
   font-size: 48px;
   margin-bottom: 20px;
   color: #fff;
 }

 .hero-text p {
   font-size: 18px;
   margin-bottom: 30px;
   color: #f5f5f5;
 }

 .hero-buttons a {
   display: inline-block;
   padding: 12px 24px;
   margin: 5px;
   border-radius: 5px;
   font-size: 16px;
   transition: background 0.2s;
 }

 .hero-buttons .btn-primary {
   background: #cb9b37;
   color: #fff;
 }

 .hero-buttons .btn-secondary {
   background: transparent;
   border: 2px solid #cb9b37;
   color: #cb9b37;
 }

 .hero-buttons a:hover {
   opacity: 0.9;
 }

 /* Hizmetler bölümü */
 /* Ana kapsayıcı */
.services-container {
    display: flex;
    min-height: 80vh;
    padding: 20px;
    gap: 20px;
    margin: 40px;
}

/* Sol Menü */
.services-sidebar {
    width: 250px;
    height: 350px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
}

.services-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* Hover – açık altın sarısı */
.service-item:hover {
    background: #f5d76e;
}

/* Seçili başlık */
.service-item.active {
    background: #d4af37;
    color: white;
}

/* Sağ içerik alanı */
.services-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-box {
    display: none;
    font-size: medium;
}



.content-box.active {
    display: block;
}

/* 📱 Responsive */
@media(max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-sidebar {
        width: 100%;
    }
}

/*catering içerik*/
.catering-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px,1fr) );
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Başlıklar */
.catering-grid h3 {
    color: #d4af37; /* Altın sarısı */
    margin-bottom: 10px;
    font-size: 25px;
}

.catering-grid h4 {
    margin: 15px 0 5px;
    font-weight: bold;
    font-size: 20px;
}

/* Liste */
.catering-grid ul {
    margin: 0 0 20px 0;
    padding-left: 18px;
}

.catering-grid ul li {
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Mobil uyum */
@media(max-width: 1024px) {
    .catering-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .catering-grid {
        grid-template-columns: 1fr;
    }
}


 /* Hakkımızda bölümü */
 /* ABOUT */
.about {
    padding: 10px 0;
    line-height: 1.8;
    font-size: 18px;
}

blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 15px;
    font-style: italic;
    margin: 25px 0;
    color: #555;
}

/* VALUES */
.values {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.value-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.box {
    background: #fafafa;
    padding: 25px;
    width: 160px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

.box span {
    font-size: 35px;
    display: block;
    margin-bottom: 10px;
}

/* SLOGAN */
.slogan {
    padding: 40px;
    background: #222;
    color: white;
    text-align: center;
    font-size: 22px;
    font-style: italic;
}



/* ----------------------------- */
/* RESPONSIVE TASARIM */
/* ----------------------------- */

/* TABLET (768px) */
@media (max-width: 768px) {

    .hero {
        height: 35vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .about {
        font-size: 16px;
        padding: 40px 0;
    }

    .value-boxes {
        gap: 20px;
    }

    .box {
        width: 140px;
        padding: 20px;
    }
}

/* MOBİL (480px ve altı) */
@media (max-width: 480px) {

    .hero {
        height: 30vh;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
    }

    .about {
        font-size: 15px;
        padding: 30px 0;
    }

    blockquote {
        font-size: 15px;
        border-left-width: 3px;
    }

    .value-boxes {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 85%;
        max-width: 260px;
    }

    .slogan {
        font-size: 18px;
        padding: 30px 20px;
    }
}

 /* İletişim bölümü */
 #contact {
   padding: 60px 0;
   background: #f9f9f9;
 }

 #contact h2 {
   text-align: center;
   font-size: 34px;
   margin-bottom: 40px;
   color: #222;
 }

 .contact-container {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   max-width: 1000px;
   margin: auto;
 }

 .contact-info,
 .contact-form {
   flex: 1 1 400px;
 }

 .contact-info ul {
   list-style: none;
   padding: 0;
   color: #555;
 }

 .contact-info ul li {
   margin-bottom: 15px;
 }

 .contact-info ul li strong {
   display: inline-block;
   width: 90px;
 }

 .contact-form form {
   display: flex;
   flex-direction: column;
 }

 .contact-form form input,
 .contact-form form textarea {
   padding: 12px;
   margin-bottom: 15px;
   border: 1px solid #ccc;
   border-radius: 5px;
   font-size: 16px;
 }

 .contact-form form button {
   width: 150px;
   padding: 12px;
   background: #cb9b37;
   color: #fff;
   border: none;
   border-radius: 5px;
   font-size: 16px;
   cursor: pointer;
 }

 .contact-form form button:hover {
   background: #7c5e23;
 }

/* FOOTER */
.footer {
    background-color:#5a5954;
    color: white;
    padding: 40px 0;
    font-size: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

/* MENU */
.footer-menu a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-menu a:hover {
    color: #d4af37; /* gold efekti */
}

.contact-btn {
    background-color: #d4af37;
    color: #222 !important;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
}

.contact-btn i {
    margin-right: 5px;
}

.contact-btn:hover {
    background-color: #b8942c;
    color: #fff !important;
}

/* SOSYAL MEDYA */
.footer-social a {
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
    color: white;
}

.footer-social a:hover {
    color: #d4af37;
}

/* İLETİŞİM */
.footer-contact p {
    margin: 5px 0;
}

/* COPYRIGHT */
.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu a {
        display: block;
        margin: 8px 0;
    }

    .footer-social a {
        margin: 0 10px;
    }

    .footer-contact p {
        margin: 5px 0;
    }
}

 /* Neden Biz Bölümü */
 .neden-biz {
   padding: 20px 20px;
   background: #f7f7f7;
   text-align: center;
   /* font-family: "Poppins", sans-serif; */
 }

 .neden-biz h2 {
   font-size: 32px;
   margin-bottom: 40px;
   color: #333;
   font-weight: 600;
 }

 /* Responsive Grid */
 .neden-container {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   /* 4 eşit sütun */
   gap: 50px;
   max-width: 1200px;
   margin: auto;

 }

 /* Kart genişliği otomatik, grid sütununu kaplasın */
 .neden-kart {
   background: #fff;
   padding: 25px;
   border-radius: 14px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;
   border: 2px solid transparent;
   overflow: hidden;
   position: relative;
   width: 100%;
 }

 /* Alt satırdaki 5. ve 6. kartlar için hizalama */
 .neden-kart:nth-child(5) {
   grid-column-start: 2;
   /* 2. sütundan başla */
 }

 .neden-kart:nth-child(6) {
   grid-column-start: 3;
   /* 3. sütundan başla */
 }

 /* Başlangıçta yazılar görünür */
 .neden-kart h3,
 .neden-kart p {
   position: relative;
   opacity: 1;
   top: 0;
   transition: all 0.45s ease;
 }

 /* Hover’da animasyon tekrar etsin diye transform ekliyoruz */
 .neden-kart:hover h3,
 .neden-kart:hover p {
   transform: translateY(-6px);
   opacity: 1;
 }

 .neden-kart:hover p {
   transition-delay: 0.1s;
 }

 /* İkon */
 .neden-kart i {
   font-size: 40px;
   margin-bottom: 15px;
   color: #cb9b37;
   transition: 0.4s ease;
 }

 /* Hover efektleri */
 .neden-kart:hover {
   transform: translateY(-10px) scale(1.04);
   box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
   border-color: #cb9b37;
 }

 /* İkon parlaması */
 .neden-kart:hover i {
   color: #cb9b37;
   transform: scale(1.2);
   filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.7));
 }

 /* Responsive Breakpoints */

 /* Tablet */
 @media (max-width: 768px) {
   .neden-biz h2 {
     font-size: 28px;
   }

   .neden-kart {
     padding: 20px;
   }

   .neden-kart i {
     font-size: 36px;
   }
 }

 /* Telefon */
 @media (max-width: 768px) {
   .neden-container {
     grid-template-columns: 1fr !important;
     /* Tek sütun */
   }

   .neden-kart:nth-child(5),
   .neden-kart:nth-child(6) {
     grid-column-start: auto !important;
   }
 }

 .neden-kart {
   padding: 18px;
 }

 .neden-kart h3 {
   font-size: 18px;
 }

 .neden-kart p {
   font-size: 14px;
 }

 .neden-kart i {
   font-size: 32px;
 }

 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-text {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover olduğunda */
.whatsapp-float:hover {
  animation: none;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  max-width: 250px;
}

/* Pulse efekti */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}