/* styles.css - Light Theme for GameZone */

body.light-theme {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  text-align: center;
}

.header.light {
  background-color: #f8f8f8;
  padding: 20px 10px;
  border-bottom: 2px solid #e0e0e0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
}

.title-block h1 {
  font-size: 2em;
  margin: 0;
  color: #222;
}

.title-block p {
  margin: 5px 0 0;
  font-style: italic;
  color: #777;
}

.navbar a {
  margin: 0 10px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #000;
}

section {
  padding: 40px 20px;
}

.team-photo, .company-photo {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.reason h3 {
  color: #007B55;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  gap: 15px;
  max-width: 700px;
}

.avatar {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  color: #333;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #007B55;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #006844;
}

.footer.light {
  background-color: #f0f0f0;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
  border-top: 2px solid #e0e0e0;
}

.footer a {
  color: #666;
  text-decoration: none;
}

.footer a:hover {
  color: #000;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #eeeeee;
  color: #222;
  padding: 15px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-banner button {
  margin-left: 20px;
  padding: 8px 16px;
  background-color: #007B55;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide-down {
  animation: slideDown 0.8s ease-out;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes slideLeft {
  from {transform: translateX(-30px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}

@keyframes slideRight {
  from {transform: translateX(30px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
