

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color:#FFCDD2
    --black-color:#0e0e0e
    --border 0.1rem solid rgba(255,255,255 0.4);
}
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;

}

/* base html codes */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
} 

body{
    background-color: #f5f5f5;
    
}

section{
    padding: 3.5rem 7%;
}

.btn{
margin-top: 1rem;
display: inline-block;
padding: 2rem 3.75rem;
font-size: 1.7rem;
color: white;
background-color: black;
cursor: pointer;
align-items:center;
border-radius:1rem;
}

#menu-btn{
display:none;
}



.heading {
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #2b2222;
    color:rgb(19, 17, 18)
   
}


/* header başlangıç*/ 
/* Temel Ayarlar */
:root {
  --black-color: #333;
  --pink-color: #FFCDD2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Genel */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 7%;
  background-color: white;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 5rem; /* 50px */
  object-fit: contain;
}

/* Menü */
.navbar {
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: var(--black-color);
  font-size: 1.3rem;
  border-bottom: 0.1rem solid transparent;
  transition: 0.3s;
}

.navbar a.active,
.navbar a:hover {
  border-color: var(--pink-color);
  padding-bottom: 0.5rem;
}

/* Hamburger Menü */
#menu-btn {
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--black-color);
  display: none;
  cursor: pointer;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1.5rem 7%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .navbar.active {
    display: flex;
  }

  #menu-btn {
    display: block;
  }

  .header {
    flex-wrap: nowrap;
  }
}



/* header bitiş*/ 
/*home bölümü başlangıç*/
.home{
    min-height: 100vh;  
    background: url(../images/kır.webp) no-repeat;   
    background-size: cover;
    background-position: center;
    margin-top: -16rem;
    display: flex;
    align-items: center;
}

.home .content{
    max-width: 60rem;
}
.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: white;
}
.home .content p{
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color:#ccc;
}
/*home bölümü bitiş*/

/*Hakkımızda Bölümü Başlangıç*/
.about .row{
    display: flex;
    flex-wrap: wrap;
	column-gap: 2rem; 
  
}
.about .row .image{
    flex: 1 1 45rem;
}
.about .row .image img{
    width: 100%;

}


.about .row .content{
    flex: 1 1 45rem;
}
.about .row .content h3{
   font-size: 3rem;
   color:black;

}
.about .row .content p{
   font-size: 1.6rem;
   color:black;
   padding: 1rem 0;
   line-height: 1.8;
   
}

/*Hakkımızda Bölümü Bitiş*/


/*Hizmetler Bölümü Başlangıç*/
.hizmetler h2{
   text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #2b2222;
    color:rgb(19, 17, 18)
}
.hizmetler {
  margin-top:4rem;
  padding: 6rem 2rem;
  background-color: #f5f5f5;
  border-radius: 2rem;
  
}
.hizmetler h2{
   text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #2b2222;
    color:rgb(19, 17, 18)}

.hizmetler-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  
}

.hizmet-karti {
  background-color: #f8ebeb;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.1);
  padding: 2rem;
  flex: 1 1 30rem;
  max-width: 30rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.hizmet-karti:hover {
  transform: translateY(-5px);
}


.hizmet-karti h3 {
  font-size: 2.4rem;
  color: #333333;
  margin-bottom: 1rem;
}

.hizmet-karti p {
  font-size: 1.6rem;
  color: #3d3939;
  line-height: 1.5;
}
/*Hizmetler Bölümü Bitiş*/

/*Söz Başlangıç*/
.hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  padding: 8rem 2rem 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-container {
  max-width: 60rem;
  background: rgba(255 255 255 / 0.85);
  padding: 3rem 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(214, 58, 58, 0.3);
  position: relative;
}

.quote-icon {
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.ana-soz {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #a32b2b;
  line-height: 1.4;
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(255 255 255 / 0.7);
}

.quote-underline {
  width: 5rem;
  height: 0.3rem;
  background-color: #d63a3a;
  border: none;
  margin: 2rem auto 0;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-container {
    padding: 2rem 2.5rem;
  }
  .ana-soz {
    font-size: 2rem;
  }
  .quote-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
  }
}


/*Söz Bitiş*/

/*Galeri Bölümü Başlangıç*/

/* Galeri Başlığı */
.heading {
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 3.5rem;
  border-bottom: 0.1rem solid #2b2222;
  color: rgb(19, 17, 18);
  text-align: center;
}

/* Galeri Konteyneri */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 2rem;
}

/* Galeri Öğeleri */
.gallery-item {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

/* Resimler ve Videolar */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

/* Video Öğeleri */
.gallery-item video {
  object-fit: contain;
}

/* Mobil Cihazlar için Stil */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}


/*Galeri Bölümü Bitiş*/

/*Footer Bölümü Başlangıç*/
.footer {
  background-color: #f8ebeb;
  color: #202020;
  padding: 4rem 2rem;
  font-size: 1.4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
  max-width: 120rem;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 25rem;
  
}

.footer-section h3 {

  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #363636;
}
.footer-section h3 i{
    padding: 0.5em;
}

.footer-section p{
  margin: 0;
  padding: 0;
  list-style: none;
  color: #272626;
  line-height: 1.8;
}

.footer-section ul{
list-style-type: none;}


.footer-section a {
  color: #444343;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #1f1e1e;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  border-top: 0.1rem solid #444;
  padding-top: 1.5rem;
  color: #242323;
}

/*Footer Bölümü Bitiş*/


/*İletişim Bölümü Başlangıç*/
.contact .row{
  display: flex;
  background-color: antiquewhite;
  flex-wrap: wrap;
  gap:1rem;
}


.contact .row .maps{
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}

.contact .row form{
  flex: 1 1 45rem;
  padding: 5rem 2rem;
text-align: center;
}
.contact .row form h3{
  text-transform: uppercase;
  font-size: 3.5rem;
}

.contact .row form .inputBox{
  display: flex;
  align-items: center;
  margin: 2rem 0;
  
  
}

.contact .row form .inputBox input{
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  text-transform: none;
  background-color: none;
  border-radius: 1rem;
}

/*İletişim Bölümü Başlangıç*/

/*SSS Bölümü Başlangıç*/


.faq-container {
  max-width: 800px;
  margin: auto;
  background:#f8ebeb;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 2rem 0;
}

.faq-question {
  font-size: 1.8rem;
  font-weight: bold;
  color:#1f1e1e;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 2rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  font-size: 1.6rem;
  color: #333;
  margin-top: 2rem;
  display: none; /* Başlangıçta gizli */
}

.faq-answer.show {
  display: block; /* Tıklanınca görünür */
}


/*SSS Bölümü Bitiş*/

/* Hamburger menüde gizle */
.navbar {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .navbar.active {
    display: flex;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .buttons {
    margin-left: auto;
  }
}

