/* Perustyylimäärittelyt */
:root {
  --primary-color: #1a3a5f;
  --secondary-color: #e6b17e;
  --text-color: #333;
  --light-color: #f5f5f5;
  --dark-color: #222;
  --accent-color: #d4af37;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

p {
  margin-bottom: 1rem;
}

/* Header */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
  background-image: linear-gradient(
      rgba(26, 58, 95, 0.9),
      rgba(26, 58, 95, 0.9)
    ),
    url("https://source.unsplash.com/random/1600x900/?piano");
  background-size: cover;
  background-position: center;
}

header h1 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 3.5rem;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Main content */
main {
  padding: 60px 0;
}

section {
  margin-bottom: 60px;
}

.highlight {
  font-size: 1.2rem;
  border-left: 4px solid var(--secondary-color);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* Video section */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder {
  background-color: var(--primary-color);
  color: white;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#play-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

#play-button:hover {
  transform: scale(1.1);
}

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Contact form */
.contact {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Raleway", sans-serif;
}

.btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2c5282;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .video-placeholder {
    height: 300px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}
