/*
Theme Name: Precaston
Theme URI: https://www.precaston.com
Author: Precaston
Author URI: https://www.precaston.com
Description: Precaston markası için özel geliştirilmiştir.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: precaston
Tags: custom-background, custom-logo, custom-menu, featured-images, responsive-layout, seo-friendly, accessibility-ready
*/

/*Genel Ayarlar*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ------ CSS ile ilk yüklemede kullanılacak animasyonlar ------ */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out both;
}
.slide-in-right {
  animation: slideInRight 1s ease-out both;
}
.slide-in-up {
  animation: slideInUp 1s ease-out both;
}
.slide-in-down {
  animation: slideInDown 1s ease-out both;
}

.scroll-slide-left,
.scroll-slide-right,
.scroll-slide-up,
.scroll-slide-down {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-slide-left.visible {
  animation: slideInLeft 1s ease-out forwards;
}
.scroll-slide-right.visible {
  animation: slideInRight 1s ease-out forwards;
}
.scroll-slide-up.visible {
  animation: slideInUp 1s ease-out forwards;
}
.scroll-slide-down.visible {
  animation: slideInDown 1s ease-out forwards;
}

/* Header Alanı */
.top-bar {
  background-color: #f4f4f4;
  color: #555;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left span a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-left span a:hover {
  color: #d1bfa7;
  transition: color 0.3s ease;
}

.top-bar-right a {
  color: #555;
  margin-left: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-bar-right a:hover {
  color: #1da1f2;
}

header {
  background-color: #FFFFFF;
  color: #555555;
  font-size: 14px;
}

header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  margin: 0 auto;
  position: relative;
}

header .header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 1;
  min-width: 0;
}

header .header-logo img {
  max-width: 50px;
  height: auto;
}

header .header-site-info h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  font-family: 'HighlandGothicLightFLF', sans-serif
}

header .header-site-info .site-tagline {
  margin: 3px 0 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #707070;
  white-space: nowrap;
  font-family: 'ThinBoy Caps', sans-serif
}

header .header-nav .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

header .header-nav .menu-item a {
  color: #555555;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  transition: color 0.3s ease;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
}

header .header-nav .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background-color: #d1bfa7;
  transition: width 0.3s ease;
}

header .header-nav .menu-item a:hover {
  color: #d1bfa7;
}

header .header-nav .menu-item a:hover::after {
  width: calc(100% - 30px);
}

header .header-nav .current-menu-item a {
  color: #d1bfa7;
  font-weight: bold;
}

header .header-nav .current-menu-item a::after {
  width: calc(100% - 30px);
  background-color: #d1bfa7;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  flex-shrink: 0;
}

/* Footer Alanı */
footer {
  background-color: #f4f4f4;
  color: #555;
  margin-top: auto;
  padding: 20px;
  font-size: 14px;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
}

footer .footer-left {
  flex: 1;
  min-width: 250px;
  max-width: 33%;
  padding: 10px;
}

footer .footer-middle,
footer .footer-right {
  flex: 1;
  min-width: 250px;
  max-width: 33%;
  padding: 10px;
  justify-items: center;
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .footer-logo img {
  max-width: 50px;
  height: auto;
}

footer .footer-site-info h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'HighlandGothicLightFLF', sans-serif;
}

footer .footer-site-info .site-tagline {
  margin: 3px 0 0;
  text-transform: uppercase;
  font-family: 'ThinBoy Caps', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #707070;
}

footer .footer-about {
  margin-top: 15px;
  color: #555;
}

footer .footer-menu h3 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}

footer .footer-menu ul {
  list-style: none;
  padding: 0;
}

footer .footer-nav li {
  margin-bottom: 8px;
}

footer .footer-nav a {
  color: #555;
  font-weight: 600;
  text-decoration: none;
}

footer .footer-nav a:hover {
  color: #d1bfa7;
}

footer .footer-contact {
  display: flex;
  flex-direction: column;
}

footer .footer-contact h3 {
  margin-bottom: 10px;
}

footer .footer-contact span {
  margin: 5px 0;
}

footer .footer-contact span a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-contact span a:hover {
  color: #d1bfa7;
  transition: color 0.3s ease;
}

footer .footer-copyright {
  font-size: 13px;
  margin-top: 15px;
}

footer .footer-social {
  display: contents;
}

footer .footer-social h3 {
  color: #555;
  font-size: 18px;
  margin: 20px 0 10px;
}

footer .footer-social a {
  color: #555;
  font-size: 16px;
  margin-right: 10px;
  text-decoration: none;
}

footer .footer-social a:hover {
  color: #1da1f2;
}

/* Front Page Start ------------------------------------- */
.front-page-main {
    padding: 0;
    margin: 0;
    max-width: none;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url("/wp-content/uploads/2025/06/hero.avif");
}

.hero-left {
  flex: 0 0 40%;
  position: relative;
  padding: 60px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left::before {
  content: "";
  position: absolute;
  left: 0;
  width: 95%;
  height: 45%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-left h1,
.hero-left p {
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-shape1,
.hero-shape2,
.hero-shape3,
.hero-shape4 {
  position: absolute;
  width: 65px;
  height: 0%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, transparent);
  transform-origin: top;
}

.hero-shape1 {
  top: 0;
  left: 36%;
  background: linear-gradient(to bottom, rgb(255 255 255 / 80%), rgb(255 255 255 / 85%));
  animation: slideDown1 1.5s ease-out forwards;
}

.hero-shape2 {
  top: 0;
  left: 38%;
  background: linear-gradient(to bottom, rgb(209 191 167 / 80%), rgba(210, 195, 165, 0.85));
  animation: slideDown2 1.5s ease-out forwards;
}

.hero-shape3 {
  bottom: 0;
  left: 46%;
  background: linear-gradient(to bottom, rgb(209 191 167 / 80%), rgba(210, 195, 165, 0.85));
  animation: slideUp1 1.5s ease-out forwards;
  transform-origin: bottom;
}

.hero-shape4 {
  bottom: 0;
  left: 48%;
  background: linear-gradient(to bottom, rgb(255 255 255 / 80%), rgb(255 255 255 / 85%));
  animation: slideUp2 1.5s ease-out forwards;
  transform-origin: bottom;
}

@keyframes slideDown1 {
  from {
    height: 0%;
    transform: skewX(18deg);
  }
  to {
    height: 35%;
    transform: skewX(18deg);
  }
}

@keyframes slideDown2 {
  from {
    height: 0%;
    transform: skewX(18deg);
  }
  to {
    height: 45%;
    transform: skewX(18deg);
  }
}

@keyframes slideUp1 {
  from {
    height: 0%;
    transform: skewX(18deg);
  }
  to {
    height: 35%;
    transform: skewX(18deg);
  }
}

@keyframes slideUp2 {
  from {
    height: 0%;
    transform: skewX(18deg);
  }
  to {
    height: 30%;
    transform: skewX(18deg);
  }
}

.hero-right {
  flex: 0 0 60%;
  position: relative;
  min-height: 600px;
}

.hero-right .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-right .slider.active {
  opacity: 1;
  transform: scale(1);
}

.hero-right .slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  background-repeat: no-repeat;
  background-position: center left;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 200px 100%);
}

.hero-dots {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
  background-color: #333;
}

/* Products Section */
.front-projects .project-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.front-projects .project-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.front-projects .project-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.front-projects .project-card:hover {
  transform: translateY(-5px);
}

.projects-wrapper h2 {
    text-align: center;
}

/* Front Page--> About Section*/
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left,
.about-right {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 20px;
}

.about-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-buttons {
  display: flex;
  gap: 15px;
}

.about-buttons .btn {
  padding: 12px 24px;
  background-color: #d1bfa7;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.about-buttons .btn:hover {
  background-color: #a8947b;
}

.about-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    padding: 10px;
  }

  .about-left h2 {
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-buttons .btn {
    margin-bottom: 10px;
  }
}

/* Front Page--> Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #ffffff;
}
/* Front Page End ------------------------------------- */

/* ------------------- Projeler.php ------------------- */
.projects {
    padding: 0;
    margin: 0;
    max-width: none;
}

.projects-wrapper {
  padding: 50px 20px;
  background: #f9f9f9;
}

.projects-wrapper h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #555;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.project-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-title {
  text-align: center;
  font-size: 1rem;
  margin: 1rem;
  color: #1a1a1a;
}

.project-card .project-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.3s ease;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 42, 42, 0.85);
  color: #fff;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.project-image:hover .project-overlay {
  opacity: 1;
  height: 25%;
  padding: 10px 15px;
  pointer-events: auto;
}

.project-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* ------------------- Single-Proje.php ------------------- */
.single-proje {
    padding: 0;
    margin: 0;
    max-width: none;
}

.single-wrapper {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.single-wrapper h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  text-align: center;
}

.proje-extra {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
}

.proje-extra ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-around;
}

.proje-extra ul li {
  font-weight: 600;
  font-size: 1.1rem;
  color: #555;
  flex: 1 1 30%;
  min-width: 160px;
}

.proje-extra ul li strong {
  color: #111;
}

.proje-galeri {
  margin-bottom: 40px;
}

.featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
  text-align: center;
}

.featured-image img.featured {
  width: 50%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: inline-block;
}

.featured-image span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  padding: 8px 15px;
  background: #f1f1f1;
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.editor-inline-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.editor-gallery-item {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.07);
  transition: box-shadow 0.3s ease;
  max-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.editor-gallery-item img {
  max-height: 150px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.editor-gallery-item:hover {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
}

.proje-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.07);
  font-size: 1.15rem;
  color: #444;
}

.proje-content h2,
.proje-content h3,
.proje-content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  font-weight: 700;
  color: #222;
}

.proje-content p {
  margin-bottom: 1.3em;
}

.proje-content a {
  color: #0073e6;
  text-decoration: underline;
}

.proje-content a:hover,
.proje-content a:focus {
  color: #005bb5;
  outline: none;
}

.gslide-description,
.description-bottom {
  display: none !important;
}

/* ------------------- Üretim.php ------------------- */
.uretim-page {
    padding: 0;
    margin: 0;
    max-width: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-box {
  border-radius: 8px;
  flex: 1 1 400px;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.image-part {
  position: absolute;
  width: 100%;
  height: 32%;
  background-image: url("/wp-content/uploads/2025/06/product.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.part-top {
  top: 0;
  margin-bottom: 2%;
  background-position: center top;
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.part-middle {
  top: 34%;
  margin-bottom: 2%;
  background-position: center center;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.5s;
}

.part-bottom {
  top: 68%;
  background-position: center bottom;
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.8s;
}

.content-box {
  flex: 1 1 400px;
}

.icon-title {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.quote-icon {
  font-size: 48px;
  color: #d1bfa7;
  line-height: 1;
  display: inline-block;
  transform: translateY(-4px);
}

.icon-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin: 0;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.production-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.production-image {
  flex: 1 1 40%;
  background-image: url("/wp-content/uploads/2025/06/product.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 400px;
  border-radius: 8px;
}

.production-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.production-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
  max-width: 600px;
  position: relative;
}

.production-item.left {
  align-self: flex-start;
  text-align: left;
}

.production-item.right {
  align-self: flex-end;
  text-align: right;
}

.production-item .icon {
  font-size: 48px;
  color: #666;
  margin-bottom: 12px;
  user-select: none;
}

.production-item h5 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
}

.production-item p {
  margin: 0;
  line-height: 1.5;
  color: #444;
}

.tech-specs {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tech-left {
  flex: 1 1 300px;
  max-width: 300px;
}

.tech-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.tech-right {
  flex: 2 1 500px;
  position: relative;
  min-width: 280px;
}

.tech-right h5 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.slides-wrapper {
  position: relative;
  min-height: 180px;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.slide.active {
  display: block;
  opacity: 1;
  position: relative;
}

.slide h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #333;
}

.slide p {
  margin: 0 0 12px;
  line-height: 1.5;
  color: #555;
}

.slide-indicator {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #595959;
  text-align: right;
}

.nav-dots {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #888;
  text-align: center;
}

.nav-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  border-radius: 50%;
  border: 2px solid #d1bfa7;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-dot:hover,
.nav-dot:focus {
  background-color: #d1bfa7;
  outline: none;
  transform: scale(1.1);
}

.nav-dot.active {
  background-color: #d1bfa7;
  cursor: default;
}

/* ------------------- Hakkımızda.php ------------------- */
.hakkimizda-page {
    padding: 0;
    margin: 0;
    max-width: none;
}

.hakkimizda-wrapper {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  padding: 40px 20px;
  box-sizing: border-box;
}

.hakkimizda-row {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem 1rem;
  align-items: flex-start;
  font-family: "Titillium Web", sans-serif;
}

.hakkimizda-left-cell {
  flex: 0 0 30%;
  min-width: 280px;
}

.hakkimizda-right-cell {
  flex: 1 1 70%;
  min-width: 320px;
}

.hakkimizda-left-content {
  display: flex;
  flex-direction: column;
  /*  gap: 1rem;*/
}

.hakkimizda-left-image {
  width: 100%;
  height: 421px;
  object-fit: fill;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.hakkimizda-slogan {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111111;
  margin: 61px auto 0 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hakkimizda-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin: 10px auto 0 0;
  color: #555;
  text-transform: uppercase;
}

.hakkimizda-right-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hakkimizda-right-image {
  width: 100%;
  max-height: 521px;
  object-fit: fill;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hakkimizda-text-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #444;
}

.hakkimizda-section-alt {
  display: flex;
  min-height: 600px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.hakkimizda-section-alt-banner {
  flex: 1;
  background-image: url("/wp-content/uploads/2025/06/banner.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 40px;
}

.hakkimizda-section-alt-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hakkimizda-section-alt-inner {
  position: relative;
  z-index: 1;
  max-width: 80%;
  text-align: left;
}

.hakkimizda-alt-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hakkimizda-alt-description {
  font-size: 1.1rem;
  line-height: 1.5;
}

.hakkimizda-section-steps {
  flex: 1;
  background-color: #f2f2f2;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.hakkimizda-step {
  position: relative;
  padding-left: 10px;
}

.hakkimizda-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #555;
}

.hakkimizda-step-circle {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 700;
  font-size: 1.2rem;
}

.hakkimizda-step-description {
  margin: 0px;
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* ------------------- iletisim.php ------------------- */
.contact-page {
    padding: 0;
    margin: 0;
    max-width: none;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 120px auto;
  position: relative;
  padding: 40px;
}

.contact-image {
  position: absolute;
  top: -50px;
  left: 15px;
  width: 50%;
  z-index: 1;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.contact-form {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: 50%;
  padding: 60px 30px 30px 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-wrapper h1 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #000;
}

.input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  outline: none;
  font-size: 16px;
  resize: none;
}

.input-field:focus {
  border-bottom: 2px solid #333;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .input-field {
  flex: 1;
}

.btn-submit {
  padding: 12px 20px;
  border: 2px solid #000;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn-submit:hover {
  background: #333;
  color: #fff;
}

.contact-box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 30px;
  margin-top: -50px;
}

.contact-item {
  flex: 1;
  text-align: center;
  padding: 30px;
  background: #222;
}

.contact-item h2 {
  margin: 10px 0;
  font-size: 20px;
}

.contact-item i {
  font-size: 20px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  word-wrap: break-word;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-wrapper,
.contact-form,
.contact-image,
.contact-box,
.contact-item,
.contact-form input,
.contact-form textarea,
.contact-form button {
    box-sizing: border-box;
}

.contact-box .contact-item {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease forwards;
}
.contact-box .contact-item:nth-child(3) {
  animation-delay: 0.4s;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact-box .contact-item:nth-child(2) {
  animation-delay: 0s;
}
.contact-box .contact-item:nth-child(1) {
  animation-delay: 0.8s;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* ------------------- 404.php ------------------- */
.not-found {
    padding: 0;
    margin: 0;
    max-width: none;
}

.not-found-wrapper {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background-color: #333;
}

.error-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.error-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1da1f2;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.back-home:hover {
  background-color: #0d8ae2;
}