@font-face {
    font-family: 'Freehand 521 BT';
    src: url('fonts/Freehand_521_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.nav-logo h2 {
    font-family: 'Freehand 521 BT', cursive, sans-serif;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #111;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: white;
        width: 100%;
        text-align: center;
        flex-direction: column;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 2rem;
        padding: 2rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
}

.lang-dropdown-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 18px 7px 14px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lang-dropdown-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ff6b35;
}
.lang-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    min-width: 160px;
    z-index: 100;
    padding: 0.5rem 0;
    animation: fadeIn 0.2s;
}
.nav-lang-dropdown.open .lang-dropdown-menu {
    display: block;
}
.lang-flag-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s;
}
.lang-flag-btn:hover, .lang-flag-btn.active {
    background: #f5f5f5;
}
.lang-flag-btn svg {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
} 
/* --- HABERLER SAYFASI ÖZEL CSS --- */
body { background: #f8fafc; color: #1a202c; font-family: 'Inter', Arial, sans-serif; }
.news-toolbar { max-width:1100px; margin:2.5rem auto 1.2rem auto; display:flex; flex-wrap:wrap; align-items:center; gap:1.2rem; justify-content:space-between; }
.news-categories { display:flex; gap:0.7rem; flex-wrap:wrap; }
.news-cat-btn { background:#fff; border:1.5px solid #e0e7ff; color:#3b82f6; font-weight:600; border-radius:8px; padding:0.4rem 1.2rem; cursor:pointer; transition:background .18s, color .18s, border .18s; font-size:1rem; }
.news-cat-btn.active, .news-cat-btn:hover { background:linear-gradient(90deg,#3b82f6,#2563eb); color:#fff; border-color:#3b82f6; }
.news-search { border:1.5px solid #e0e7ff; border-radius:8px; padding:0.4rem 1.1rem; font-size:1rem; outline:none; min-width:220px; }
.news-hero { display: flex; flex-wrap: wrap; align-items: stretch; background: #fff; border-radius: 22px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); margin: 0 auto 2.5rem auto; max-width: 1100px; overflow: hidden; cursor:pointer; transition:box-shadow .18s; }
.news-hero:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.hero-img-wrap { flex: 0 0 50%; max-width: 520px; overflow: hidden; }
.hero-img { width: 100%; max-width: 520px; object-fit: cover; min-height: 320px; max-height: 420px; transition:transform .18s; }
.news-hero:hover .hero-img { transform: scale(1.03); }
.hero-content { flex: 1; padding: 2.8rem 2.5rem 2.8rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.news-category { display: inline-block; font-size: 1rem; font-weight: 700; border-radius: 7px; padding: 0.22rem 1.1rem; margin-bottom: 1.1rem; letter-spacing: 0.5px; }
.news-category.fuar { background: #e0e7ff; color: #3b82f6; }
.news-category.makine { background: #fff7ed; color: #f59e42; }
.news-category.duyuru { background: #e0ffe7; color: #10b981; }
.hero-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.1rem; line-height: 1.15; }
.hero-summary { font-size: 1.18rem; color: #374151; margin-bottom: 1.2rem; }
.news-date { color: #6b7280; font-size: 1.05rem; }
.news-list { max-width: 1100px; margin: 0 auto 3rem auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.2rem; }
.news-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.18s, transform 0.18s; cursor:pointer; opacity:0; transform:translateY(30px); animation:fadeInUp .7s forwards; }
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); transform: translateY(-3px) scale(1.01); }
.news-thumb { width: 100%; height: 180px; object-fit: cover; transition:transform .18s; }
.news-card:hover .news-thumb { transform:scale(1.04); }
.news-card-content { padding: 1.3rem 1.3rem 1.1rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.news-title { font-size: 1.25rem; font-weight: 800; margin: 0.7rem 0 0.5rem 0; line-height: 1.18; color: #1a202c; }
.news-summary { color: #374151; font-size: 1.05rem; margin-bottom: 0.7rem; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.5rem; }
.news-date { color: #6b7280; font-size: 0.98rem; }
.news-readmore { color: #2563eb; font-weight: 600; text-decoration: none; margin-left: auto; }
.load-more { margin: 2rem auto 0 auto; display: block; padding: 0.7rem 2.2rem; font-size: 1.1rem; border-radius: 8px; background: linear-gradient(90deg,#3b82f6,#2563eb); color: #fff; border: none; cursor: pointer; font-weight:700; letter-spacing:0.5px; box-shadow:0 2px 12px rgba(59,130,246,0.10); transition:background .18s; }
.load-more:hover { background: linear-gradient(90deg,#2563eb,#3b82f6); }
@media (max-width: 900px) {
  .news-hero { flex-direction: column; }
  .hero-img, .hero-img-wrap { max-width: 100%; min-height: 220px; }
  .hero-content { padding: 2rem 1.2rem; }
  .news-list { gap: 1.2rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.3rem; }
  .news-list { grid-template-columns: 1fr; }
  .news-card-content { padding: 0.9rem 0.7rem 0.7rem 0.7rem; }
  .news-thumb { height: 120px; }
  .news-toolbar { flex-direction:column; gap:0.7rem; align-items:flex-start; }
}
@keyframes fadeInUp {
  to { opacity:1; transform:translateY(0); }
}
.modal-share { display:flex; gap:1.1rem; justify-content:center; margin:1.2rem 0 0.7rem 0; }
.modal-share a { color:#2563eb; font-size:1.5rem; transition:color .18s; }
.modal-share a:hover { color:#f59e42; }
.modal-tags { margin:1.1rem 0 0.7rem 0; }
.modal-tag { display:inline-block; background:#e0e7ff; color:#3b82f6; border-radius:7px; padding:0.18rem 0.8rem; font-size:0.93rem; font-weight:600; margin-right:0.5rem; }
.modal-gallery { display:flex; gap:0.7rem; margin:1.2rem 0; justify-content:center; flex-wrap:wrap; }
.modal-gallery img { width:120px; height:80px; object-fit:cover; border-radius:8px; box-shadow:0 2px 8px rgba(59,130,246,0.10); cursor:pointer; transition:transform .18s; }
.modal-gallery img:hover { transform:scale(1.08); } 

/* About Page Styles */
.about-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 0 0 4rem 0;
}
.about-header {
  text-align: center;
  padding: 5rem 0 2rem 0;
}
.about-header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.about-header p {
  font-size: 1.25rem;
  color: #374151;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-content {
  max-width: 1100px;
  margin: 3rem auto 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.about-section.reverse {
  flex-direction: row-reverse;
}
.about-text {
  flex: 1 1 350px;
  min-width: 280px;
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.7;
}
.about-img {
  flex: 1 1 350px;
  min-width: 280px;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.10);
  object-fit: cover;
  width: 100%;
  height: 320px;
  margin: 0 auto;
  display: block;
}
/* Album Slider */
.album-slider {
  margin: 3rem auto 0 auto;
  max-width: 900px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255,107,53,0.10);
  overflow: hidden;
  position: relative;
}
.album-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.23,1.02,.64,1);
  will-change: transform;
}
.album-slide {
  min-width: 100%;
  transition: opacity 0.5s;
  opacity: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}
.album-slide img {
  width: 100%;
  max-width: 600px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255,107,53,0.13);
  margin-bottom: 1.2rem;
}
.album-caption {
  font-size: 1.1rem;
  color: #374151;
  text-align: center;
  margin-top: 0.7rem;
}
.album-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
}
.album-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0e7ff;
  border: 2px solid #3b82f6;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.album-dot.active {
  background: #3b82f6;
  border-color: #ff6b35;
}
@media (max-width: 900px) {
  .about-content { padding: 2rem 1rem; }
  .about-section { flex-direction: column; gap: 1.5rem; }
  .about-img { height: 220px; }
  .album-slide img { height: 200px; }
}
@media (max-width: 600px) {
  .about-header h1 { font-size: 2rem; }
  .about-content { padding: 1rem 0.2rem; }
  .about-img { height: 120px; }
  .album-slide img { height: 110px; }
} 