@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --bg: #ffffff;
  --text: #2b1e0f;
  --accent: #ffc857;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  padding-top: 80px;
}

header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-height: 64px;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.slider {
  width: 65%;
  height: 340px;
  overflow: hidden;
  position: relative;
  margin: 24px auto 0 auto;
  border-radius: 16px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.container {
  padding: 18px 10px 10px 10px;
  max-width: 800px;
  margin: auto;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin: 32px 0 18px 0;
}

p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
  font-weight: 300;
}

/* Hakkımızda Slider */
.about-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin: 40px 0 20px 0;
  overflow: hidden;
}
.about-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 350px;
  flex: 0 0 350px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.about-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.about-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: left;
}
.about-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 16px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.slider-controls button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.slider-controls button:active {
  background: #ffb300;
  transform: scale(0.95);
}

/* Sosyal Medya Kartları */
.social-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 40px 0 60px 0;
  flex-wrap: wrap;
}
.social-card {
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  padding: 32px 28px 28px 28px;
  min-width: 260px;
  max-width: 300px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  position: relative;
}
.social-card .social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.social-card.instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 100%);
}
.social-card.tiktok {
  background: linear-gradient(135deg, #010101 0%, #69c9d0 100%);
}
.social-card.youtube {
  background: linear-gradient(135deg, #ff6f6f 0%, #ffb3b3 100%);
  color: #222;
  text-shadow: 0 1px 6px rgba(255,255,255,0.18);
}
.social-card.youtube, .social-card.youtube h3, .social-card.youtube p, .social-card.youtube .social-count {
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.social-card.youtube .social-btn {
  background: #c4302b;
  color: #fff !important;
  border: none;
  text-shadow: none;
}
.social-card.youtube .social-btn:hover {
  background: #a32020;
  color: #fff !important;
}
.social-card h3 {
  font-size: 1.2rem;
  margin: 8px 0 2px 0;
  color: #fff;
}
.social-card p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}
.social-count {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
}
.social-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: inline-block;
}
.social-btn:hover {
  background: #ffe0e0;
  color: #c4302b;
}

/* Navbar sosyal medya ikonları */
.nav-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-icon {
  width: 28px;
  height: 28px;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.nav-icon:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.12);
}
.nav-social-mobile {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center;
}

/* Footer */
.footer {
  background: #FFA580;
  border-top: 1px solid #f0e0c0;
  margin-top: 60px;
  padding: 32px 0 18px 0;
  width: 100%;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-social {
  display: flex;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-icon {
  width: 32px;
  height: 32px;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.footer-icon:hover {
  opacity: 1;
  transform: scale(1.13);
}
.footer-contact {
  color: #fff !important;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
  background: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.footer-contact a {
  color: #fff !important;
  text-decoration: underline;
  font-weight: bold;
  background: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.footer-contact a:hover {
  color: #fff;
  background: #2b1e0f;
  border-radius: 4px;
  padding: 2px 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-copyright {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.85;
  background: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .about-slider, .social-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-img {
    height: 120px;
    margin-bottom: 10px;
  }
  .about-card {
    padding: 18px 10px 20px 10px;
    min-width: 90vw;
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
  .footer-container {
    padding: 0 10px;
  }
}