/* Perusasetukset */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fbe9d0;
}

/* Sivun rakenne */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, #ff9800, #ffa726);
  height: 90px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

.logo {
  color: white;
  font-size: 2em;
  margin: 0;
}

.contact-btn {
  background-color: white;
  color: #444;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ccc;
  transition: all 0.2s ease-in-out;
}

.contact-btn:hover {
  background-color: #f1f1f1;
}

/* Pääsisältö ja sivupalkit */
.content-area {
  flex: 1;
  display: flex;
  background-color: #fbe9d0;
}

.side-bar {
  width: 120px;
  background-color: #ffb74d;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: start;
  margin-top: 60px;
  margin-left: 50px;
  margin-right: 50px;
}

.tekstisisalto {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.main-button {
  display: inline-block;
  background-color: white;
  border: 2px solid #ff9800;
  border-radius: 10px;
  color: #444;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 1.2em;
  transition: all 0.2s ease;
  text-align: center;
}

.main-button:hover {
  background-color: #ff9800;
  color: white;
}

/* Footer */
.footer {
  background-color: #ff9800;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.4em;
}
