* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #a99e75 0%, #8a7f5a 100%);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* zoom: 0.85; <- EZT TÖRÖLTEM */
}

.header {
  width: 100%;
  height: 110px;
  background-color: #2e2e2e;
  border-bottom: 2px solid #444;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('translogo.png') no-repeat center center;
  background-size: contain;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4caf50;
}

.amazon-link {
  position: absolute;
  right: 30px;
}

.amazon-link a {
  color: #4caf50;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border: 1px solid #4caf50;
  border-radius: 4px;
}

.amazon-link a:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 90%;
}

.left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  flex: 1;
}

.right-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  max-width: 450px;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  margin: 15px 0;
  border: 3px solid #555;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.intro {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: justify;
  line-height: 1.6;
  font-size: 0.98rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  color: #333;
}

.intro b {
  color: #2e2e2e;
}

.contact-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.contact-box h2 {
  margin-top: 0;
  color: #2e2e2e;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
  transition: border 0.3s ease;
  font-family: inherit;
}

.contact-box input:focus,
.contact-box textarea:focus {
  border-color: #a99e75;
}

.contact-box textarea {
  height: 120px;
  resize: vertical;
}

.contact-box button {
  width: 100%;
  padding: 12px;
  background-color: #4caf50;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: bold;
}

.contact-box button:hover {
  background-color: #43a047;
}

.contact-box button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.message-box {
  display: none;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

.message-box.success {
  background-color: #4caf50;
  color: white;
}

.message-box.error {
  background-color: #f44336;
  color: white;
}

.footer {
  width: 100%;
  background-color: #2e2e2e;
  color: #4caf50;
  text-align: center;
  padding: 15px 0;
  margin-top: auto;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .left-side, .right-side {
    max-width: 90%;
  }
  
  .header {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .amazon-link {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .intro, .contact-box {
    padding: 20px;
  }
  
  .brand-text {
    font-size: 1.5rem;
  }
  
  .logo {
    width: 120px;
    height: 60px;
  }
}