@import url('https://fonts.googleapis.com/css2?family=Cabin+Condensed:wght@400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
--primary-color: #E1E0D6;
--primary-dark: #C8C7BD;
--text-dark: #333333;
--text-light: #777777;
--accent-color: #8B7D6B;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}


  html {
    font-size: 62.5%;
    
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}


/* Header Styles */


header {
    background-color: var(--primary-color);
    padding: 2rem 15%;
    position: fixed;
    width: 100%;
    
    top: 0;
    z-index: 1000;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    
}

.logo img {
    height: 5rem;
}

/*   
.logo-icon {
    font-size: 3.2rem;
    color: var(--accent-color);
}

*/


.logo-text {
font-size: 2.25rem;
font-weight: 600;
color: var(--text-dark);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 5rem;
}

nav a {
    font-family: "Cabin Condensed", sans-serif;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing:1px;
    font-weight: 500;
    font-size: 1.8rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions a {
    color: var(--text-dark);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}


header .burger {
    z-index: 1001;
}

/* Mobile Menu */

/* 
    .mobile-menu {
        display: none;
        background-color: var(--primary-color);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
    }

    .mobile-menu li {
        margin-bottom: 1rem;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }


 */


 .mobile-menu {
    display: none;
 }




/* burger kodları başlangıç */

header .burger {
    margin: 1rem;
  display: none;
  position: relative;
  width: 0;
  height: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

header input {
  display: none;
}

.burger span {
  display: none;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;

}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

header input:checked ~ .burger span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

header input:checked ~ .burger span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

header input:checked ~ .burger span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}



















@media (min-width: 1025px) and (max-width: 1280px) {
  
 


header {
    display: flex;
    justify-content: space-between;
    padding:2rem 10% ;
}

.header-container {
    width:100%;
    justify-content: space-between;
}








  
}







@media (min-width: 768px) and (max-width: 1100px) {

header {
    display: flex;
    justify-content: space-between;
    padding:2rem 10% ;
}

.header-container {
    width: 80%;
}


.header-container nav ul {
    display: none;
}


  

    /* burger kodları başlangıç */

header .burger {
  display: flex;
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}

header input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

  
}





@media (min-width: 481px) and (max-width: 767px) {
  


header {
    display: flex;
    justify-content: space-between;
    padding:2rem 10% ;
}

.header-container {
    width: 80%;
}


.header-container nav ul {
    display: none;
}


  

    /* burger kodları başlangıç */

header .burger {
  display: flex;
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}

header input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
















    
  
}
















@media (min-width: 320px) and (max-width: 480px) {
  



header {
    display: flex;
    justify-content: space-between;
    padding:2rem 10% ;
}

.header-container {
    width: 80%;
}


.header-container nav ul {
    display: none;
}


  

    /* burger kodları başlangıç */

header .burger {
  display: flex;
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}

header input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}







  
}


























/* responsive menü başlangıç  */

/* hamburger menu  */



  
 .mobile-menu {display:none ; 
    left: 150vw;
    transition: 1.4s ease ;
}
 

@media (min-width:768px) and  (max-width:1110px) {
    

   
     header input:checked ~ .mobile-menu{
        display: flex!important;
        left: 50vw ;
        
    }



.mobile-menu {
    position: fixed;
    top: 8rem;
    height: calc(100vh - 8rem);
    display: flex;
    flex-direction: column;
    width: 50vw ;
    right: 0;
    background-color: #e1e0d6;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 5;
    border-left : 0.1rem solid #aaa7a75e;
}

.mobile-menu  ul li {
    text-decoration: none;
    list-style: none;
    
}

.mobile-menu  ul li a {
    color:#000;
    font-size: 2rem;
}


}


















@media (min-width:375px) and  (max-width:767px) {
    

   
    header input:checked ~ .mobile-menu{
        left: 00vw ;
    }



.mobile-menu {
    position: fixed;

    top: 8rem;
    height: calc(100vh - 8rem);
    display: flex;
    flex-direction: column;
    width: 100vw ;
    right: 0;
    background-color: #e1e0d6;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 5;
    border-left : 0.1rem solid #aaa7a75e;
}

.mobile-menu  ul li {
    text-decoration: none;
    list-style: none;
    
}

.mobile-menu  ul {
    margin-bottom: 10rem;
}
.mobile-menu  ul li a {
    color:#000;
    font-size: 2rem;
}


}












@media (min-width:250px) and  (max-width:375px) {
    

   
  header input:checked ~ .mobile-menu{
      left: 00vw ;
  }



.mobile-menu {
  position: fixed;
  top: 9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100vw ;
  right: 0;
  background-color: #e1e0d6;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 5;
  border-left : 0.1rem solid #aaa7a75e;
}

.mobile-menu  ul li {
  text-decoration: none;
  list-style: none;
  
}

.mobile-menu  ul {
  margin-bottom: 10rem;
}
.mobile-menu  ul li a {
  color:#000;
  font-size: 2rem;

}


}







/* responsive menü bitiş*/