
body {
  margin: 0;
  font-family: 'Bellota Text';
  background-color: #fff8f0;
  color: #3b2f2f;
  background-image: url('logs.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
  text-align: center;
}


.title {
  background-color: #f8f8f4;
  display: inline-block;
  padding: 10px 20px;
  margin: 20px 0;
  color: #333;
  font-size: 2em;
  text-align: center;
}


header {
  background-color: #a52a2a;
  padding: 1rem 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  transition: color 0.4s ease; 
}

.navbar a:hover {
  color: #007bff; 
}

h1 {
  display: inline-block;
  margin: 40px auto 20px auto;
  padding: 15px 40px;
  border: 2px solid black;
  background-color: #fefcf8;
  font-size: 4rem;
  text-align: center;
  font-family: 'Dela Gothic One';
}

.title {
  text-align: center;
  font-size: 3rem;
  margin-top: 2rem;
  color: #a52a2a;
  font-weight: 400;
  font-style: normal;
}

.image-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.image-container img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


footer {
  background-color: #f5e1d1;
  padding: 2rem 1rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.column {
  flex: 1 1 300px;
  max-width: 400px;
}

.column h3 {
  font-size: 22px;
  color: #a52a2a;
  margin-bottom: 0.5rem;
}

.column p {
  line-height: 1.6;
  color: #3b2f2f;
  font-size: 1rem;
}

#contact {
  background-color: #fff8f0;
  padding: 3rem 1rem 4rem 1rem;
  text-align: center;
  border-top: 2px solid #a52a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact h2 {
  color: #a52a2a;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

#contact p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  color: #3b2f2f;
}

#contact a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #004b99;
}


@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}
