:root {
    --color1: #fff;
    --mainColor: #3c4e58;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}
html,
body {
    font-family: "Montserrat", serif;
    overflow-x: hidden;
}
.container {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0 0.5rem;
    width: 77rem;
}
a {
    text-decoration: none;
}

header {
    padding-top: 40px;
    .header-top {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 60px;
        width: auto;
        display: block;
        padding-bottom: 10px;
    }

    .topmenu ul.menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }
    
    .topmenu ul.menu li a {
        position: relative;
        padding-bottom: 11px;
        font-size: 18px;
        font-weight: 400;
        color: #3b3535;
        text-decoration: none;
    }

    .topmenu ul.menu li a.active {
        color: #85241c;
    }
    
    .topmenu ul.menu li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        height: 4px;
        width: 100%;
        background-color: #85241c;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }
    .topmenu ul.menu li a:hover {
        color: #85241c;
    }
    
    .topmenu ul.menu li a:hover::after {
        transform: scaleX(1);
    }
    
    .topmenu ul.menu li a.active::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        height: 4px;
        width: 100%;
        background-color: #85241c;
        z-index: 0;
    }
    .right {
      display: flex;
      flex-direction: column-reverse;
      gap: 10px;
      align-items: center;
    }

    .lang {
        list-style: none;
        position: relative;
        display: inline-block;
        font-family: sans-serif;
    }
    
    .lang li.selected {
        position: relative;
    }
    
    .lang li.selected > a {
        text-decoration: none;
        color: #3b3535;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px;
        user-select: none;
        white-space: nowrap;
        border: 1px solid #eee;
        border-radius: 5px;
        background: white;
        z-index: 11;
        position: relative;
    }
    
    .lang li.selected:hover > a {
        border-bottom: none; 
        border-radius: 5px 5px 0 0;
        border-bottom: 1px solid transparent;
    }

    
    
    .lang img {
        width: 20px;
        height: 20px;
    }
    
    .lang .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        display: none;
        min-width: 100%;
        border: 1px solid #eee;
        border-top: none; /* üst çizgiyi kaldır: birleşik görünüm */
        border-radius: 0 0 5px 5px; /* sadece alt köşeleri yuvarla */
        z-index: 10;
    }
    
    .lang .dropdown li a {
        text-decoration: none;
        color: #3b3535;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px;
        white-space: nowrap;
    }
    
    .lang .dropdown li a:hover {
        background-color: #f5f5f5;
    }
    
    .lang li.selected:hover .dropdown {
        display: block;
    }

}

#homeslider .home-slider img{
  object-fit:cover;
  height:700px;
  width:100%;
}

#homeslider .home-slider .item{position:relative;}

#homeslider .home-slider .item::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(0,0,0,.45) 0%,rgba(0,0,0,.05) 70%,transparent 100%);
}

.slider-overlay{
  position:absolute;
  left:10%;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-decoration:none;
  pointer-events:auto;
}

.slogan{
  display:inline-block;
  position:relative;
  color:#fff;
  text-transform:uppercase;
  font-size:4rem;
  font-weight:700;
  line-height:1.15;
  margin:0;
  background-image:linear-gradient(#85241c,#85241c);
  background-repeat:no-repeat;
  background-size:100% 0%;
  transition:background-size .15s ease-in;
}

.slider-overlay:hover .slogan{background-size:100% 100%;}

.alt-yazi{color:#fff;font-size:1.4rem;margin:.8rem 0 0;}

@media(max-width:768px){
  .slogan{font-size:2.6rem;}
  .alt-yazi{font-size:1rem;}
}


#homeaboutus {
    position: relative;
    padding: 50px 0;
    overflow: hidden; 
    background-color: #ffffff;
}

#homeaboutus .homeau {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

#homeaboutus p {
    font-size: 15px;
    font-weight: 400;
    color: #1b1b1b;
}

#homeaboutus img {
    max-width: 250px;
    height: auto;
    object-fit: cover;
}

#whoweare {
background-color: #F2F4F7;
.team {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
    padding: 50px;
}

.team-member {
    width: 350px;
    text-align: center;
    padding-top: 70px; 
    position: relative;
}

.image-wrapper {
  position: relative;
  height: 300px;
  overflow-y: visible;  
}

.bg-shape {
  height: 100%;
  background-color: #85241c;
  border-radius: 400px;
}

.image-wrapper img {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 450px;
  z-index: 1;
}

.name {
  margin-top: 80px;
  font-size: 1.2rem;
  font-weight: 600;
}
}

#calisma-alanlari {
  padding: 60px 20px;
  background-color: #ffffff;
}

#calisma-alanlari .container {
  margin: auto;
}

#calisma-alanlari h2 {
  text-align: center;
  color: #85241c;
  margin-bottom: 40px;
  font-size: 2rem;
}

.calisma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
}

.alan-karti {
  background-color: #f9f9f9;
  border: 1px solid #f2f4f7;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.alan-karti:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alan-karti img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.alan-karti h3 {
  color: #85241c;
  font-size: 1rem;
  margin: 0;
}

#socialmedia {
    background-color: #F2F4F7;
    padding: 40px 0;
    border: 0px;
    iframe {
        border: 0;
    }
}


/* EKİBİMİZ */ 
.detay-wrapper {
  background: white;
  padding: 60px 20px;
}

.ekip-container h2 {
  text-align: center;
  color: #85241c;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.ekip-listesi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.ekip-kisi {
  width: 320px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s;
}

.ekip-kisi.aktif {
  background-color: #85241c;
  color: white;
}

.image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.isim {
  text-align: center;
  margin: 0;
  padding: 18px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: inherit;
}

.kisi-detay {
  max-width: 900px;
  margin: auto;
  background-color: white;
  padding: 30px 40px;
  animation: fadeIn 0.4s ease-in-out;
}

.kisi-detay.gizli {
  display: none;
}

.etiketler {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.etiketler span {
  background-color: #f2f4f7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
}

.hakkinda p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* İletişim bilgileri */
.iletisim h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #85241c;
}

.iletisim p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  font-size: 0.95rem;
}

.ikon {
  width: 18px;
  height: 18px;
}

.kartlar-alani {
  background: #f2f4f7;
  padding: 60px 20px;
}

.icerik-alani {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}


/* Sol: paragraf */
.hakkinda {
  flex: 1 1 60%;
}
.hakkinda p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Sağ: iletişim bilgileri satır içi */
.iletisim-satir-ici {
  flex: 1 1 35%;
  min-width: 250px;
}
.iletisim-satir-ici h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #85241c;
}
.iletisim-satir-ici p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 0.95rem;
}
.iletisim-satir-ici a {
  text-decoration: none;
  color: #333;
  transition: text-decoration 0.2s ease;
}
.iletisim-satir-ici a:hover {
  text-decoration: underline;
}
.ikon {
  width: 18px;
  height: 18px;
}


/* ÇALIŞMA ALANLARIMIZ */

#calisma-detayli {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

#calisma-detayli .container {
  width: 77rem;
  margin: auto;
}

#calisma-detayli h2 {
  text-align: center;
  color: #85241c;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.alanlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  justify-content: center;
}

.alan-kutu {
  background-color: #ffffff;
  border: 0px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.alan-kutu:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.alan-kutu img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.alan-kutu h3 {
  font-size: 1.2rem;
  color: #85241c;
  margin-bottom: 15px;
}

.alan-kutu p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}


/* MAIN-TOP*/

#maintop {
  background: 
    linear-gradient(90deg, rgba(133,36,28,0.9) 28%, rgba(0,0,0,0) 130%), 
    url(../img/bottomheader.png) center/cover no-repeat;
  height: 300px;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

#maintop .container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#maintop .titletop {
  font-size: 0.875rem;
  color: #fff;
  margin-top: 40px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#maintop .titletop::before {
  display: block;
  content: '';
  height: 1px;
  width: 60px;
  background-color: #fff;
  margin-right: 10px;
}

#maintop .titlebottom {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 500px;
  line-height: 1.4;
}

#maintop p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
  max-width: 42rem;
  line-height: 1.5;
}

/* HAKKIMIZDA */

#hakkimizda {
  background-color: #fff;
  padding: 60px 20px;
}

#hakkimizda .logohak img {
    max-height: 80px;

}


#hakkimizda h2 {
  color: #85241c;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

#hakkimizda h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #85241c;
  margin: 10px auto 0;
  border-radius: 2px;
}

#hakkimizda p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}


/* İLETİŞİM */

#map {

    z-index: 1;
    a iframe {
        width: 100%;
        pointer-events: none;
        position: relative;
    }

    img {
        position: absolute;left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-top: -80px;
        width: 70px;
        height: auto;
        z-index: 2;
    }
    a.mapinyo {
      transition: 0.6s;
    }
    a.mapinyo:hover {
      opacity: 0.75;
      transition: 0.6s;
    }
}

#form-section {
    background-color: #85241c;
    display: block;
    position: relative;
    max-width: 850px;
    margin:0 auto;
    padding: 70px 40px;
    z-index: 3;
    margin-bottom: 100px;
    margin-top: -150px;
    font-family: 'Montserrat';

    .contactos {
        display: flex;
        flex-direction: row; 
        gap: 10px;
    }

    .titlos {
        display: flex;
        flex-direction: row; 
        gap: 10px;
        align-items: center;
        img {
            height: 30px;
            width: auto;
        }
    }

    .contact {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        flex-direction: row;
        flex: 1;

    }

    .contact span {
        font-size: 13px;
        color: #fff;
    }


    .info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }



    .formtop {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 15px;

        span {
            font-size: 2.5875rem;
            font-weight: 500;
            color: #fff;
            margin-top: 30px;
        }

    }


    .formtop p {
        font-size: 16px;
        font-weight: 100;
        width: 800px;
        text-align: center;
        color: #fff;
        margin-bottom: 10px;
    }

    .formbot {

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        margin: 0;

        input, textarea {
            background: transparent; 
            border: 1px solid white; 
            color: white; 
            padding: 15px;
            font-size: 16px;
            font-weight: 200;
            outline: none; 
            width: 100%;
            box-sizing: border-box;
        }
        
        input:focus, textarea:focus {
            border: 1px solid white; 
            box-shadow: none; 
        }
        
        input::placeholder, textarea::placeholder {
            color: #fff; 
            font-size: 20px;
            font-weight: lighter;
            font-family: 'Montserrat', sans-serif;
        }

        .form-container {
            width: 100%;
            max-width: 600px;
            padding: 20px;
        }
    
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
    
        .form-row input {
            flex: 1;
            padding: 15px 25px;
            font-size: 20px;
            background-color: #85241c;
            border: 1px solid #fff;
            color: #fff;
        }
    
        .form-group {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
    
        textarea {
            width: 100%;
            height: 120px;
            padding: 15px 25px; 
            border: 1px solid #fff;
            background-color: #85241c;
            font-size: 20px;
            resize: none;
        }
    
        button {
            width: 180px;
            padding: 15px 25px;
            border: none;
            background-color: #fff;
            border: 1px solid #fff;
            font-size: 20px;
            color: #000;
            cursor: pointer;
            margin-top: 10px;
            
        }

        button:hover {
            opacity: 0.7;
        }

    }
    
}

/* FOOTER */ 

.footertop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 35px 0;
        
        span {
            color: #D41317;
            font-size: 1.125rem;
            font-weight: 500;
        }

        img.footerlogo {
            height: 4.0625rem;
            width: auto;
            
        }

        a.phone img, .footersmedia img {
            height: 29px;
            width: auto;
        }

        a.phone {
            color: #000;
            text-align: center;
            display: flex;
            align-items: center;
            font-size: 1.125rem;
            font-weight: 500;
        }

        .resp {
            display: flex;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
            gap: 50px;

        }

        .footersmedia {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }

}

.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap; 
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-column span {
    font-size: 14px;
    font-family: 'Montserrat';
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #4C4C4C;
  font-size: 14px;
  font-weight: 400;
}

.footer-column ul li a {
  color: #4C4C4C;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #D41317;
}

.footer-map-container iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  margin-bottom: 15px;
}

footer span.copy {
    color: #4C4C4C;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Montserrat';
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
    margin-bottom: 30px;
  }
}




/* EKİBİMİZ DENEME */

.kisi-resim {
  flex: 1 1 40%;
  text-align: center;
}

.kisi-resim img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.kisi-resim .isim {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 5px;
}

.kisi-detay-icerik {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kisi-icerik {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}


.kisi-blok {
  padding: 60px 20px;
  background-color: #f2f4f7;
}

.kisi-blok-wrapper:nth-of-type(even) .kisi-blok {
  background-color: #fff;
}

.kisi-blok-wrapper:nth-of-type(even) .kisi-icerik {
  flex-direction: row-reverse;
}






/* MOBILE MENU */

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.hamburger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}

/* Mobil Menü (Kapalıyken görünmez) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
}

.mobile-menu-content img {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    height: 60px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
}

.mobile-menu nav ul li {
    margin: 20px 0;
}

.mobile-menu nav ul li a {
    color: black;
    font-size: 28px;
    text-decoration: none;
}

.mobile-menu nav ul li .active {
    color: #D41317 !important;
}

/* Menü Açıkken */
.mobile-menu.active {
    transform: translateX(0);
}

/* Kapatma Butonu */
.close-menu {
    position: absolute;
    top: 20px;
    right: 0px;
    margin-right: 25px;
    font-size: 50px;
    color: #000;
    cursor: pointer;
}









