@import url("https://fonts.googleapis.com/css2?family=Manuale:ital,wght@0,300..800;1,300..800&display=swap");


:root {
  /* --main-color : #A7A495;*/

  /*Kırmızı renk #e84242 */
  --main-color: #0a0e19; /* deep navy page background */
  --black-color: #f3f4f6; /* primary text now light for dark backgrounds */
  --border: 0.1rem solid rgba(0, 0, 0, 0.08);
  --surface-color: #f1f5f9; /* platinum surface */
  --muted-color: #64748b;
  --accent-color: #1e3a8a; /* sapphire */
  --accent-contrast: #ffffff;
}


* {
  font-family: "Manuale", sans-serif;


  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}



/* base html codes */



html {
  font-size: 62.5%;
  overflow-x: hidden; /*alttaki scrolu kapatır*/
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}



html::-webkit-scrollbar {
  width: 0.8rem;
  background-color: #242424;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 3rem;
  background-color: black;
}






body {
  background-color: var(--main-color);
 
}

section {
  padding: 2.5rem 4%;
}


a{
  color: black;
  text-decoration: none;

}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 4.75rem;
  border-radius: 30rem;
  font-size: 1.7rem;
  color: var(--accent-contrast);
  background-color: var(--accent-color);
  
}


.btn:hover {
  filter: brightness(0.95);
}


.heading {
  font-family: "Manuale", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  font-size: 4rem;
  color: var(--black-color);
  margin-bottom: 3.5rem;
  border-bottom: 0.1rem solid rgba(0,0,0,0.08);
}



.search-input {
  font-size: 1.6rem;
  color: var(--black-color);
  padding: 1rem;
  text-transform: none;
  border-radius: 3rem;
}







.header .search-form {
  position: absolute;
  top: 115%;
  right: 7%;
  background-color: var(--surface-color);
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  border-radius: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: scaleY(0);
}

.header .search-form.active {
  transform: scaleY(1);
}

.header .search-form i {
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: black;
}

.header .search-form input {
  width: 100%;
  background-color: var(--surface-color);
}
/*header start*/
 
.header .logo img{
  height: 12rem; 
}


.header {
  background: linear-gradient(135deg, #0b1020, #1e3a8a); /* unified sapphire header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  margin: 2rem 7%;
  border-radius: 30rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(30,58,138,0.35);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* center navbar on desktop while keeping logo/menu at edges */
.header .navbar { position: absolute; left: 50%; transform: translateX(-50%); }
.header #menu-btn { color: #e5e7eb; }

.header .navbar a {
  margin: 0 1rem;
  font-size: 1.6rem;
  color: #e5e7eb;
  border-bottom: 0.1rem solid transparent;
}


.header .navbar .active,
.header .navbar a:hover {
  border-color: var(--main-color);
  padding-bottom: 0.5rem;
}


.header .buttons button {
  cursor: pointer;
  font-size: 2rem;
  margin-left: 2rem;
  background-color: transparent;
}


.header .cart-items-container {
  position: absolute;
  top: 95%;
  height: calc(100vh - 9rem);
  width: 35rem;
  background-color: #c4c4c4;
  box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 75%);
  right: -100%;
}

.header .cart-items-container .cart-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}


.header .cart-items-container .cart-item .fa-times{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: black;
}



.header .cart-items-container .cart-item img{
  height: 7rem;
}

.header .cart-items-container.active {
  right: 3rem;
}



.header #menu-btn{
  display: none;
}

/*header end */











/*home start*/

.home {
  min-height: 100vh;
  background: url(../images/homeBackGround.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -14.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 4rem;
} 


.home .content {
  max-width: 80rem;
  text-align: right;
  background: linear-gradient(135deg, rgba(11,16,32,0.75), rgba(30,58,138,0.75));
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.home .content h3 {
  font-family: "Manuale", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  font-size: 4.4rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.6);
}



/*home end*/









/*Katalog start*/

.katalog .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
  object-fit: cover;
 
}


.katalog .box-container .box {
  padding: 3rem;
  background-color: var(--surface-color);
  border-radius: 3rem;
  background-color: var(--surface-color);
  min-height: 50rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  
}
/* mobile menu trigger */
.header #menu-btn{
  display: none;
  background: none;
  border: 0;
  color: var(--black-color);
  cursor: pointer;
}

/* backdrop for mobile navbar */
.nav-overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 1000;
}
.nav-overlay.active{ display:block; opacity:1; }

.no-scroll{ overflow: hidden; }


.katalog .box-container .box img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  
}

.katalog .box-container .box:hover img{
  transform: scale(1.2);
}

 .katalog .box-container .box .category
{
 /* font-family: "Manuale", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  font-size: 1.7rem;
  color: #42311f;

  */


  font-size: 2.5rem;
  padding: 1rem 0;
  
  font-family: "Manuale", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  font-size: 2rem;
  color: #42311f;

  
}





/*Katalog end*/



/*Products section start*/




/*
.katalog .box-container .box .box-head img
{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50% , -50%);
  border-radius: 3rem;

}
*/


/*
.katalog .box-container .box
{
  
  font-size: 4rem;
  font-weight: bold;
  text-align: start;
  overflow-wrap: anywhere;
}
*/


/*










.katalog .box-container .box-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.katalog .box-container .box-bottom .info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.katalog .box-container .box-bottom .info .price{
  font-size: 3rem;
}

.katalog .box-container .box-bottom .amount{
  font-size: 1.4rem;
}


.katalog .box-container .box-bottom .katalog-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 6.5rem;
  height: 6.5rem;
  border: 0.2rem solid var(--main-color);
}



.katalog .box-container .box-bottom .katalog-btn a i{
  font-size: 1.6rem;
  color: var(--main-color);
}




*/

/*Products section end*/



















/*about us start*/
.about .row{
  padding-right: 10%;
  display:flex;
  flex-wrap: wrap;
  gap: 0rem;
  
}

.about .content{
  
  padding-right: 10%;
    max-width: 40%;
    overflow-wrap: anywhere;
  
}

  .about .row .image{
  padding-top: 7%;
  flex: 1 1 30rem;
}


.about .row img{
  width: 100%;
  height: auto;
}

h2 {
  font-size: 2rem;
  color: #261b0e;
  border-bottom: 2px solid #261b0e;

    
  
  
}

/* Vizyon paragraf stilini belirleyin */
.vision p {
  
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Misyon listesinin stilini belirleyin */
.mission ol {
  
  list-style-type: decimal;
  
  
}

.mission li {
  font-size: 1.5rem;
  
  line-height: 1.6;
}

.mission li strong {
  color: black;
}
.content p {
  
  font-size: 1.5rem;
  line-height: 1.6;
}







/*footer start*/

.footer {
  background-color: rgb(26, 25, 25);
  text-align: center;
}

.footer .search {
  display: flex;
  justify-content: center;
}

.footer .search .search-input {
  width: 30rem;
}

.footer .search .btn-primary {
  background-color: var(--black-color);
  padding: 1rem 2rem;
  margin-left: 1rem;
}

.footer .share {
  padding: 2rem 0;
}

.footer .share a {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  color: #fff;
  font-size: 2rem;
  border: var(--border);
  border-radius: 50%;
  margin: 0.3rem;
}

.footer .share a:hover {
  background-color: var(--main-color);
}

.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .links a {
  background-color: var(--main-color);
  padding: 0.7rem 2rem;
  color: #fff;
  font-size: 2rem;
  border: var(--border);
}

.footer .links a:hover {
  background-color: var(--black-color);
  opacity: 0.7;
}

.footer .links a.active {
  background-color: var(--black-color);
}

.footer .credit {
  font-size: 2rem;
  color: #fff;
  font-weight: 200;
  padding-top: 1.5rem;
}

.footer .credit span {
  color: rgb(234, 69, 69);
}

/*footer end*/















/*responsive start*/

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 1.5rem 2rem;
  }

  .header .logo img {
    height: 7rem;
  }

  section {
    padding: 2rem;
  }

  .katalog .box-container .box .box-head .name {
    font-size: 3.4rem; 
  }
}

@media (max-width: 992px) {
  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    height: 100dvh;
    width: min(88vw, 340px);
    background: linear-gradient(135deg, #0b1020, #1e3a8a);
    box-shadow: -24px 0 48px rgba(0,0,0,0.35);
    padding-top: 8rem;
    z-index: 1001;
  }
  .header .navbar.active { right: 0; }

  .header .navbar a {
    color: #e5e7eb;
    display: block;
    margin: 0.75rem 2rem;
    padding: 1.2rem 0;
    font-size: 2.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* About section: stack on mobile */
  .about .row {
    display: block;
    padding-right: 0;
  }
  .about .content {
    max-width: 100%;
    padding-right: 0;
  }
  .about .row .image {
    padding-top: 2rem;
    flex: 0 0 auto;
  }
  .about .row img {
    width: 100%;
  }
  /* Search form width on mobile */
  .header .search-form {
    width: 90vw;
    right: 5%;
  }
  /* Keep hero readable on mobile */
  .home { align-items: flex-end; justify-content: center; padding: 2rem; }
  .home .content { text-align: center; }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }

  .header #menu-btn {
    display: inline-block;
  }
  /* Compact header spacing on very small screens */
  .header {
    margin: 1rem 2%;
    border-radius: 2rem;
  }
}

/* dedicated About page */
.about-page { color: #ffffff; }
.about-page .brands { margin-bottom: 2rem; }
.about-page .brands .heading { color: #e5e7eb; border-color: rgba(255,255,255,0.2); }
.about-page .brand-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.4rem 3.6rem; }
.about-page .brand-logos .logo { width: 340px; height: 140px; background: rgba(255,255,255,0.08); border-radius: .9rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-page .brand-logos .logo img { max-width: 90%; max-height: 85%; display: block; }
.about-page .brand-logos .logo.firatpen img { transform: scale(2.3); }
.about-page .about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border-radius: 1.5rem;
  padding: 2rem;
}
.about-page h1,
.about-page h2,
.about-page p,
.about-page li,
.about-page strong,
.about-page .heading { color: #ffffff; }
.about-page h2 { border-bottom: 2px solid rgba(255,255,255,0.25); }
.about-page .image img { width: 100%; border-radius: 1rem; }
.about-page .content { max-width: 100%; }
.about-page .mission li strong { color: #c7d2fe; }

@media (max-width: 992px) {
  .about-page .about-card { grid-template-columns: 1fr; }
}

/*responsive end*/




















/*about us end*/
