* TAVPI Güncellenmiş style.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #000;
  padding: 0;
  height: 100px;
  display: flex;
  align-items: center;
}

.navbar .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 100px;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.5s;
}

.nav-menu ul li a:hover {
  color: #ff6600 !important;
}



.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

.nav-menu.active {
  display: flex;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff6600, #ffcc99);
  text-align: center;
  padding: 80px 20px;
}

.hero-content h1 {
  font-size: 108px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
}

/* Featured Görsel veya Video Alanı */
.featured-img {
  width: 100%;
  text-align: center;
  margin: 50px auto;
}

.featured-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 50px auto 30px auto;
}

.featured-img video {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  margin: 50px auto 30px auto;
}



.cta-button {
  background: #fff;
  color: #ff6600;
  padding: 12px 24px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.cta-button:hover {
  background: #ffcc99;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  font-size: 15px;
}

/* Main Slogan */
.main-slogan {
  font-family: Montserrat;
  font-size: 54px;
  font-weight: 900;
  color: white;
  line-height: 1.3;
}

.main-slogan span {
  color: white;
  font-weight: 900;
}

/* Form Elemanları */
textarea, input[type="text"], input[type="email"] {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    display: none;
    flex-direction: column;
    background: #ff6600;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  .nav-menu.active ul {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .nav-menu ul {
    gap: 20px;
  }

  .navbar .logo img {
    height: 60px;
  }
}