/*!
 * © 2026 Post Ajans | www.postajans.com.tr
 * Developer: Berat Celik
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --color-fff   : #fff;
  --color-000   : #000;
  --color-D1071D: #D1071D;
  --color-5F5F5F: #5F5F5F;
  --color-707070: #707070;
  --color-79B434: #79B434;
  --color-950313: #950313;
  --color-727272: #727272;
  --color-C7C7C764: #C7C7C764;
}

body{ font-family: "Plus Jakarta Sans", sans-serif !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-container { width: 85%; margin: 0 auto;}
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}
.menu-padding{padding-top: 250px;}
/*** Properties End ***/

/* ======================== */
/* FONT-SIZE START */
/* ======================== */
.fs-256 { font-size: clamp(64px, 13.33vw, 256px);}
.fs-108 { font-size: clamp(36px, 5.6vw, 108px);}
.fs-96  { font-size: clamp(32px, 5vw, 96px);}
.fs-72  { font-size: clamp(28px, 3.75vw, 72px);}
.fs-64  { font-size: clamp(24px, 3.33vw, 64px);}
.fs-60  { font-size: clamp(22px, 3.1vw, 60px);}
.fs-55  { font-size: clamp(20px, 2.85vw, 55px);}
.fs-48  { font-size: clamp(18px, 2.5vw, 48px);}
.fs-42  { font-size: clamp(17px, 2.2vw, 42px);}
.fs-36  { font-size: clamp(16px, 1.9vw, 36px);}
.fs-32  { font-size: clamp(15px, 1.66vw, 32px);}
.fs-30  { font-size: clamp(14px, 1.56vw, 30px);}
.fs-27  { font-size: clamp(14px, 1.30vw, 27px);}
.fs-24  { font-size: clamp(13px, 1.25vw, 24px);}
.fs-20  { font-size: clamp(12px, 1.04vw, 20px);}
.fs-16  { font-size: clamp(11px, 0.83vw, 16px);}
.fs-14  { font-size: clamp(10px, 0.73vw, 14px);}
.fs-12  { font-size: clamp(9px, 0.62vw, 12px);}
.fw-extra-bold{font-weight: 900 !important;}
/* ======================== */
/* FONT-SIZE END */
/* ======================== */

/* ======================== */
/* COLORS START */
/* ======================== */
.color-fff{color: var(--color-fff);}
.color-000{color: var(--color-000);}
.color-D1071D{color: var(--color-D1071D);}
.color-5F5F5F{color: var(--color-5F5F5F);}
.color-707070{color: var(--color-707070);}
.color-79B434{color: var(--color-79B434);}
.color-950313{color: var(--color-950313);}
.color-727272{color: var(--color-727272);}

.bg-D1071D{background-color: var(--color-D1071D);}
.bg-5F5F5F{background-color: var(--color-5F5F5F);}
.bg-950313{background-color: var(--color-950313);}
/* ======================== */
/* COLORS END */
/* ======================== */

/* ======================== */
/* BUTTONS START */
/* ======================== */
.button-one { padding: clamp(6px, 0.52vw, 10px) clamp(14px, 1.3vw, 25px); transition: all .4s; }
.fill-D1071D{background-color: var(--color-D1071D); color: var(--color-fff);}
.fill-D1071D:hover{background-color: var(--color-333333); color: var(--color-D1071D);}

.fill-C7C7C764{background-color: var(--color-C7C7C764); color: var(--color-D1071D);}
.fill-C7C7C764:hover{background-color: var(--color-D1071D); color: var(--color-fff);}

.border-D1071D{background-color: transparent; color: var(--color-D1071D); border: 1px solid var(--color-D1071D);}
.border-D1071D:hover{background-color: var(--color-5F5F5F); color: var(--color-fff); border: 1px solid var(--color-5F5F5F);}

.border-fff{background-color: transparent; color: var(--color-fff); border: 1px solid var(--color-fff);}
.border-fff:hover{background-color: var(--color-D1071D); color: var(--color-fff); border: 1px solid var(--color-D1071D);}


.menu-request-btn{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 200px;
  width: 170px;
  background-color: var(--color-D1071D);
  border-radius: 0px 0px 0px 50px;
  color: var(--color-fff) !important;
}
/* ======================== */
/* BUTTONS END */
/* ======================== */

/* ======================== */
/* MENU START */
/* ======================== */
.navbar {
  height: 125px;
  position: fixed !important;
  /* background: wheat; */
  background: linear-gradient(180deg,rgba(0, 0, 0, .7) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 999;
  top: 0;
  padding: 0 0 0 150px !important;
}


.logo {
  width: 200px;
  height: 100px;
}

.navbar .nav-item {
  padding: 0 35px;
  font-size: 14px;
  height: 100px;
  display: flex;
  align-items: center;
}

.navbar .nav-link {
  color: var(--color-fff);
  transition: all .4s !important;
}

.navbar .nav-link:hover {
  color: var(--color-D1071D) !important;
}

.navbar .nav-link:focus {
  color: var(--color-fff) !important;
}

.white-bar{
  background: var(--color-fff)
}

.white-bar .nav-link {
  color: var(--color-000);
  transition: all .4s !important;
}

.white-bar .nav-link:hover {
  color: var(--color-D1071D) !important;
}

.white-bar .nav-link:focus {
  color: var(--color-fff) !important;
}

.white-bar .navbar-brand{
  content: url("/assets/images/logo-dark.svg");
  width: 200px;
  height: 100px;
}

.dropdown-menu {
  position: absolute;
  z-index: 999 !important;
  top: 85px;
  left: -15px;
  background-color: var(--color-D1071D) !important;
  transition: all .4s !important;
  border-radius: 0 !important;
  color: var(--color-fff) !important;
}

.dropdown-menu .dropdown-item {
  color: var(--color-fff) !important;
  padding: 10px 30px;
}

.nav-item.dropdown:hover .language-dropdown {
  display: block !important;
  position: absolute;
  z-index: 10;
  min-width: 160px !important;
}

.language-dropdown .dropdown-item {
  color: var(--color-fff) !important;
  padding: 10px 30px;
  width: auto !important;
  text-align: center;
}
.flag-img{
  width: 25px; height: 25px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  transition: all .4s !important;
  color: var(--color-fff) !important;
  background-color: transparent !important
}
.menu-dropdown .dropdown-item i{
  margin-left: -15px;
  transition: all .4s;
  opacity: 0;
}
.dropdown-item:hover i{
  margin-left: 0px;
  opacity: 1;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  position: absolute;
  z-index: 10;
  min-width: 210px;
}

.navbar-toggler {
  padding: 0;
  line-height: 0;
  border: none !important;
  background-color: var(--color-0069A7) !important;
  color: var(--color-fff) !important;
  border-radius: 50px !important;
  width: 48px !important;
  height: 48px !important;
}
.white-bar .navbar-toggler {color: var(--color-000) !important;}
.navbar-toggler:focus {
  box-shadow: none !important;
}

/* ======================== */
/* MENU END */
/* ======================== */


/* ======================== */
/* SLIDER START */
/* ======================== */
.main-slider,
.slider-item,
.slider-item img,
.slider-item video {
  height: 100vh;
  overflow: hidden;
}

.slider-img {
  object-fit: cover;
}

.slider-item video {
  object-fit: cover;
  object-position: center center;
  width: 100vw
}

.slider-content{
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 400px;
}

.slider-counter {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 400px;
}

.inputRange {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  /* JS bu arkaplanı ezecek, ilk yüklenme için varsayılan bir gri ton bırakabiliriz */
  background: #dddddd40; 
  cursor: pointer;
  outline: none;
}

/* Thumb: for Chrome, Safari, Edge */
.inputRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px; /* Tutması kolay olsun diye biraz büyütebilirsin */
  height: 8px;
  border-radius: 9999px;
  background: #d1071d;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  cursor: grab;
}

.inputRange::-webkit-slider-thumb:active {
  cursor: grabbing;
}

/* Thumb: for Firefox */
.inputRange::-moz-range-thumb {
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #d1071d;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  cursor: grab;
}

.inputRange::-moz-range-thumb:active {
  cursor: grabbing;
}
/* ======================== */
/* SLIDER END */
/* ======================== */

/* ======================== */
/* HOME PAGE CONTENT */
/* ======================== */
.corporate-img-box{
  position: relative;
  width: 100%;
}
.corporate-img-box img{
  height: 415px;
  object-fit: cover;
}
.slogan-box{
  position: absolute;
  right: 0;
  bottom: -75px;
  z-index: 2;
  width: 210px;
  height: 150px;
  background-color: var(--color-D1071D);
}
.slogan-box img{
  width: 55px;
  height: auto;
  object-fit: contain;
}
/* ======================== */
/* HOME PAGE CONTENT END */
/* ======================== */

/* ======================== */
/* CATEGORY CARD */
/* ======================== */
.category-card{
  border: 1px solid var(--color-707070);
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 20px;
  position: relative;
}
.all-prod{
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.all-prod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Overlay */
  z-index: 1;
}
.all-prod img{
  width: clamp(60px, 6vw, 115px);
}
.c-card-img{
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  /* border: 1px solid var(--color-707070); */
}
.c-card-text{
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.category-card .link-text{color: var(--color-D1071D); transition: color .4s;}
.category-card i{transition: margin .4s;}
.category-card:hover .link-text{color: var(--color-5F5F5F);}
.category-card:hover i{margin-left: 15px !important;}
/* ======================== */
/* CATEGORY CARD END */
/* ======================== */

/* ======================== */
/* HOME VIDEO AREA */
/* ======================== */
.video-area{
  width: 100%;
  height: 600px;
  background-color: #000;
}
.video-area video{
  width: 100%; height: 100%;
}
/* ======================== */
/* HOME VIDEO AREA END */
/* ======================== */

/* ======================== */
/* SECTOR CARD */
/* ======================== */
.sector{
  border-left: 1px solid var(--color-5F5F5F);
  /* border-right: 1px solid var(--color-5F5F5F); */
  padding: 0 20px;
  text-align: center;
}

.sector img{
  width: 50px;
  height: 85px;
  margin-bottom: 10px;
}
/* ======================== */
/* SECTOR CARD END */
/* ======================== */

/* ======================== */
/* SUSTAINBILITY CARD */
/* ======================== */
.sustainability{
  width: 80%;
  height: 500px;
  margin-left: auto;
  background-color: var(--color-5F5F5F);
}
.sustainability .earth{
  height: 500px;
  margin-left: -20%;
}
/* ======================== */
/* SUSTAINBILITY CARD END */
/* ======================== */

/* ======================== */
/* NEWSLETTER */
/* ======================== */
.catalog-img{width: 100% !important;}
.newsletter{
  height: 200px;
  position: relative;
}
.newsletter input{
  background-color: var(--color-950313);
  color: var(--white);
  padding: 10px 15px;
  border: none;
  width: 400px;
  font-size: 14px;
}
.newsletter input:focus{
  outline: none;
}
.newsletter input::placeholder{
  color: var(--color-fff);
}
.newsletter img{margin-top: -70px;width: 70%;}

/* Info Form */
.info-form{
  box-shadow: 45px 45px 65px #00000012;
}
.info-form input{
  padding: 10px 5px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var( --color-D1071D);
}
.info-form input::placeholder{
  color: var(--color-707070)
}
.info-form input:focus{
  outline: none;
}
/* Info Form End */

/* ======================== */
/* NEWSLETTER END */
/* ======================== */

/* ======================== */
/* FOOTER */
/* ======================== */
.footer a{color: var(--color-707070);transition: all .4s;}
.footer a:hover{color: var(--color-D1071D);}
.footer-social a{
  width: 30px; height: 30px; background-color: var(--color-D1071D); color: var(--color-fff); border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  margin-right: 10px;
}
.footer-social a:hover{
  background-color: var(--color-5F5F5F); color: var(--color-fff);
}
/* ======================== */
/* FOOTER END */
/* ======================== */

/* ======================== */
/* PRODUCTS START */
/* ======================== */
.search-logo{width: 250px;}
.p-detail-box{
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border: 1px solid #DDDDDD;
  padding: 30px;
}
.p-detail-box img{
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.accordion-item {border: none !important; margin-bottom: 15px;}
.accordion-header .accordion-button {
  border-radius: 0 !important;
  background-color: var(--color-5F5F5F) !important;
  color: var(--color-fff) !important;
  margin-bottom: 15px;
}
.accordion-header .accordion-button:focus{
  box-shadow: none;
}
.accordion-button::after{
  filter: brightness(0) invert(1);
}
/* ======================== */
/* PRODUCTS END */
/* ======================== */

/* ======================== */
/* CORPORATE STAR */
/* ======================== */
.counter-card{
  aspect-ratio: 1;
  padding: 25px;
  box-shadow: 25px 25px 45px #00000010;
}
.counter-card img{width: 40px; height: 40px; object-fit: contain;}
/* ======================== */
/* CORPORATE END */
/* ======================== */

/* ======================== */
/* MEDIA START */
/* ======================== */
.gallery-card{
  aspect-ratio: 1;
  width: 100%;
}
.gallery-card img{
  aspect-ratio: 1;
  width: 100%;
  transition: all .4s;
  filter: grayscale(1);
}
.gallery-card img:hover{
  filter: grayscale(0);
}
.video-card{
  aspect-ratio: 16/9;
  width: 100%;
}
.video-card img{
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  transition: all .4s;
  filter: grayscale(1);
}
.video-card img:hover{
  filter: grayscale(0);
}

.news-card img{
  transition: all .4s;
  filter: grayscale(1);
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.news-card:hover img{
  filter: grayscale(0);
}
/* ======================== */
/* MEDIA END */
/* ======================== */

/* ======================== */
/* CONTACT START */
/* ======================== */
.contact-form input, .contact-form textarea{
  width: 100%;
  background-color: transparent !important;
  border: 1px solid var(--color-5F5F5F);
  padding: clamp(8px, 0.78vw, 15px) clamp(14px, 1.3vw, 25px);
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--color-D1071D);
  outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{
  color: var(--color-5F5F5F);
}
.contact-form input:focus::placeholder, .contact-form textarea:focus::placeholder{
  color: var(--color-D1071D);
}
.contact-info a{
  color: var(--color-5F5F5F);
  transition: all .4s;
}
.contact-info i{
  color: var(--color-D1071D);
  transition: all .4s;
}
.contact-info a:hover{
  color: var(--color-D1071D);
  transition: all .4s;
}
/* ======================== */
/* CONTACT END */
/* ======================== */