* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Değişkenler */

:root {
  --ab-primary: #1C73AD;
  --ab-primary-dark: #166193;
  --ab-secondary: #F09935;
  --ab-secondary-dark: #de8b2d;
  --ab-accent: #901F93;
  --ab-success: #00A54E;
  --ab-text-white: #fff;
  --ab-text-black: #000;
  --ab-light-grey: #F8F9FA;
  --ab-bg-white: #fff;
  --ab-main-font-family: "Bell MT", sans-serif;
  --ab-main-font-family-heading:
    --ab-main-text-font-size-medium: 16px;
  --ab-main-text-font-size-large: 18px;
  --ab-main-text-font-size-small: 14px;
  --ab-main-text-font-size-xsmall: 12px;
  --ab-header-font-size-h1: 48px;
  --ab-header-font-size-h1-mobile: 40px;
  --ab-header-font-size-h2: 28px;
  --ab-header-font-size-h3: 20px;
  --ab-header-font-size-h4: 16px;
  --ab-header-font-size-h5: 14px;

}

/* Genel Css */

body {
  font-family: var(--ab-main-font-family);
  font-size: var(--ab-main-text-font-size-medium);
  color: var(--ab-text-black);

}

body, html {
  overflow-x: hidden;
}

header {
  background-color: #fff;
  padding: 0px 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.container-fluid {
  padding: 0 !important;
}


/* Hero Css */

.heroContainer {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0;
  margin: 0;
}

.hero .image-wrapper {
  position: relative;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(209, 39, 39, 0);
  padding: 1.5rem 2rem;
  border-radius: 8px;
}

.hero .overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero .overlay button {
  padding: 0.7rem 1.5rem;
  background-color: #07413e2a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hero .overlay button:hover {
  background-color: #07413e;
  color: #fff;
}

.heroContainer {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 0px;
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* Görsel Css */

.image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.siteLogo {
  width: 320px;
  height: 70px;
}

/* Header Css */

.siteMenu {
  padding: 0px 24px;
}

.siteNavbar {
  padding: 0 24px;
}

.nav-item {
  display: inline-block;
  --ab-header-font-size-h1-mobile: 40px;
  margin-right: 4px;
}

/* Overlay Css */

.overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 8px;

}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
}


.overlay h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.overlay button {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: #e0c7c736;
  color: #8d2d2d;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Card Css */

.cards {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #f8f8f8;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  margin: 0 1rem;
  text-align: center;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(197, 70, 70, 0.2);
}

.card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
  width: 100%;
  border-radius: 1px;
}

.cardText {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  color: #555;
  text-align: center;
  margin: 5px 0 15px;
}

.cardTitle {
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-top: 10px;
}


/* Collection Css */

.collection {

  text-align: center;
  color: #000;
}

.collection h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.collection button {
  padding: 0.75rem 1.5rem;
  background-color: #a04343;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.collection .image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.collection .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  padding: 2rem;
  border-radius: 12px;
}

.container-fluid {
  padding: 0 0 !important;
  height: px !important;
}

.collection .overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.collection .overlay button {
  padding: 0.75rem 1.5rem;
  background-color: #852323;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* Blog Css */

.blog {
  padding: 2rem 0;
}

.blog img {
  width: 100%;
  max-width: 750px;
  height: 550px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-text {
  margin-top: 20px;
  max-width: 100%;
  transform: none;
  text-align: left;
}

.blogContainer {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Footer Css */

.footer {
  background-color: #f8f8f8;
  color: #333;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 180px;
  margin: 10px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-logo {
  flex: 1 1 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.footer-logo img {
  max-width: 100px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 15px;
}

.footer-bottom a {
  color: #777;
  margin: 0 5px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #000;
}

footer a:hover {
  color: #000 !important;
  text-decoration: underline;
}

.footer-col {
  min-width: 180px;
  margin-bottom: 20px;
}

.mediaWrap{
  position: relative; left: 150px;
}

.eeImg{
  width: 100px;
  height: 100px;
}


/* exhibition Styles */

.fairs-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.fair-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden; /* önemli: görsel taşmasını engeller */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  padding: 0; /* padding sıfırlandı */
  text-align: center;
}

.fair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.fair-image {
  width: 100%;
  height: 220px; /* kartın üst kısmını tam kaplar */
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0; /* köşelere taşma olmasın */
}

.fair-card .card-body {
  padding: 15px;
}


.fair-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.fair-description {
  font-size: 0.95rem;
  color: #555;
}


/* certificate Styles */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.report-title {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 40px;
}

.report-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.report-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.report-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

/* certifica css */
.logo-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s ease;
}

.logo-card img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
}

.logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* production css */


.production-section {
  padding: 60px 0;
}

.production-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #2e2e2e;
  text-align: center;
}

.production-item {
  margin-bottom: 60px;
}

.production-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.production-text h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
  color: #1e1e1e;
}

.production-text p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .production-text {
    text-align: center;
  }
}
/* about us Styles */

.about-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-section h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 40px;
}

.about-item {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.about-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.about-text h4 {
  font-size: 1.75rem;
  margin-top: 20px;
  font-weight: 600;
}

.about-text p {
  font-size: 1rem;
  margin-top: 10px;
  color: #555;
}

/* Vision and Mission Styles */
.vision-mission-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #2c2c2c;
}

.vision-block, .mission-block {
  margin-bottom: 60px;
}

.vision-block h2, .mission-block h2 {
  font-size: 2rem;
  color: #902a2a;
  margin-bottom: 20px;
}

.vision-block p, .mission-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* contact Styles */


.contact-section {
  padding: 60px 20px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.contact-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #222;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fffefc;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #e6d8c4;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d5c1ab;
}

.collection-gallery h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.product-card {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
  transform: scale(1.05);
}

.modal-body img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card .p-3 {
  padding: 1rem;
}
.blog-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}