* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* Top Bar */
.top-bar {
  background: #111;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* Header */
header {
  background: white;
  text-align: center;
  padding: 15px 5%;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 60px;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

nav a:hover {
  color: #0078ff;
}

/* ===== MEGA MENU ===== */
.mega-dropdown {
  position: relative;
}

/* DEFAULT: KAPALI */
.mega-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 2000;

  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* SADECE HOVER’DA AÇ */
.mega-dropdown:hover > .mega-menu {
  display: grid !important;
}

.mega-column h4 {
  margin-bottom: 12px;
  color: #0078ff;
}

.mega-column a {
  display: block;
  padding: 6px 0;
  color: #333;
}

.mega-column a:hover {
  color: #0078ff;
  padding-left: 6px;
  transition: 0.2s;
}

/* Banner */
.banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Products */
.products {
  padding: 60px 5%;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card span {
  font-size: 40px;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 60px 5%;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #0078ff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #005fcc;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, #e3f2fd, #ffffff);
  padding: 60px 5%;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header .slogan {
  font-size: 18px;
  font-weight: bold;
  color: #0078ff;
}

/* About Content */
.about-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 5%;
  line-height: 1.8;
  font-size: 16px;
}

.about-content p {
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    display: none !important;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}
/* Hamburger gizli */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobil */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #111;
  }

  .nav-menu.active {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .mega-dropdown.active .mega-menu {
    display: block;
  }
}
/* Ürün Detay Sayfası */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  color: #0078ff;
}

.product-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  font-size: 22px;
  transition: 0.3s;
}

/* Instagram pembe */
.footer-social a.instagram {
  color: #e1306c;
}

.footer-social a.instagram:hover {
  color: #ff5c8a;
}

/* YouTube kırmızı */
.footer-social a.youtube {
  color: #ff0000;
}

.footer-social a.youtube:hover {
  color: #ff4d4d;
}
.contact-page {
  padding: 60px 10%;
}

.contact-page h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 12px;
}

/* FORM */
.contact-form {
  max-width: 700px;
  margin: auto;
}

.contact-form h3 {
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #0d6efd;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #084298;
}

/* MOBİL */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
