* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Rubik', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a, button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Header */
header.header {
  background-image: url('Resimler/download.jpg'), url('Resimler/dag.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Logo */
.logo {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 10;
}
.logo a {
  font-size: clamp(24px, 5vw, 50px);
  color: #B1B1B1;
  text-decoration: none;
  transition: color 0.5s ease;
}
.logo a:hover { color: #fff; }

/* Navbar */
.navbar {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}
.daha{
	text-decoration: none;
}
.navbar ul {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
.navbar a {
  color: #B1B1B1;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 35px);
  transition: color 0.5s ease;
  padding: 5px;
}
.navbar a:hover { color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 20px;
  right: 20px;
}
.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  z-index: 1000;
}
.mobile-menu ul { padding: 60px 20px; text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a { color: #333; font-size: 20px; text-decoration: none; }
.mobile-menu.active { max-height: 300px; }

/* Hero */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  height: auto;
  max-height: 800px;
  min-height: 250px;
	text-decoration: none;
}
.hero-title {
  font-size: clamp(26px, 6vw, 60px);
  font-style: italic;
  font-weight: bold;
  color: #000;
  text-shadow: 0 0 15px #fff;
  margin-bottom: 1rem;
}
.hero-summary {
  font-size: clamp(16px, 3vw, 30px);
  color: #fff;
  text-shadow: 0 0 10px #000;
 	margin-bottom: 1.5rem;
}
.hero-button {
  background-color: #cd191c;
  border: none;
  border-radius: 15px;
  padding: 15px;
  max-width: 200px;
  width: 80%;
  margin: 0 auto;
  transition: all 0.3s ease;
  
}
.hero-button:hover { transform: scale(1.05); box-shadow: 0 0 50px #000; }
.hero-button a { color: #fff; display: inline-flex; align-items: center; justify-content: center; height: 100%; font-size: clamp(16px, 3vw, 25px); }

/* Scroll Top */
.scroll-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 50px; height: 50px;
  background: #FF0004;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.scroll-top:hover { transform: scale(1.1); }
.scroll-top a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #fff; font-size: 1.5rem; }

/* Sections and Cards */
.section { padding: 40px 20px; width: 100%; }
.section.light { background: #E0E0E0; }
.section.white { background: #f0f8ff; }
.section.cream { background: #faebd7; }
.text-block { max-width: 750px; margin: 0 auto; text-align: center; font-size: clamp(18px, 3vw, 30px); line-height: 1.4; }
.card-container { display: -webkit-flex; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(0,0,0,0.2);
  padding: 20px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.card img { border-radius: 50%; border: 3px solid #A3A3A3; width: 80px; height: 80px; margin-bottom: 15px; }
.card h1 { font-size: clamp(16px,2.5vw,20px); color: #4B4B4B; }
.card h2 { font-size: clamp(12px,2vw,15px); color: #989898; margin: 5px 0; }
.card p { font-style: italic; font-weight: bold; font-size: clamp(12px,2vw,14px); color: dimgray; }

/* Background Image Section */
.section.bg-image {
  background: url('Resimler/download.jpg') center/cover fixed, url('Resimler/pxfuel.jpg') center/cover fixed;
  background-blend-mode: soft-light;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.section.bg-image h2 { font-size: clamp(28px,5vw,50px); margin-bottom: 40px; }
.section.bg-image button { background: #E82828; border: none; border-radius: 40px; padding: 15px; max-width: 200px; width: 100%; margin: 0 auto; display: block; transition: transform 0.5s ease; }
.section.bg-image button:hover { transform: scale(1.1); }
.section.bg-image a { color: #fff; text-decoration: none; font-size: clamp(20px,3.5vw,35px); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; height: 100%; }

/* Footer */
.footer { background: ghostwhite; text-align: center; padding: 40px 20px; }
.footer .social { display: -webkit-flex; display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; }
.footer .social a { color: rgba(0,0,0,0.8); font-size: 1.5rem; transition: color 0.3s ease; }
.footer .social a:hover { color: #333; }
.footer ul { display: -webkit-flex; display: flex; justify-content: center; gap: 20px; list-style: none; padding: 0; }
.footer ul li { color: gray; font-size: clamp(18px,3vw,30px); border-right: 1px solid rgba(39,39,39,0.7); padding: 0 15px; }
.footer ul li:last-child { border: none; }

/* Media Queries */
@media screen and (max-width: 1024px) {
  .hamburger { display: flex; }
  .navbar { display: none; }
  .hero { padding: 10% 5%; }
  .navbar a {
  color: #B1B1B1;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 25px);
  transition: color 0.5s ease;
  padding: 5px;
}
}.daha {
}
