* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fredoka', 'Baloo 2', sans-serif;
}

body {
  background: linear-gradient(135deg, #fff9e6 0%, #ffe6f0 100%);
  color: #111;
}

.hero {
  background-image: url(assets/Website/header_background.png);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px 20px 20px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  position: relative;
}

.logo-spot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 132px;
  height: 132px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-spot img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.hero h1 {
  font-family: 'Bubblegum Sans', 'Baloo 2', cursive;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero p {
  font-family: 'Baloo 2', sans-serif;
  font-size: 30px;
  height: 25px;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0;
  font-weight: 600;
}

.slogan {
  width: 500px; /* Adjust this value */
  height: auto; /* Adjust this value */
  display: block;
  margin: 20px auto;
  padding-top: 20px;
}

section {
  padding: 60px 10%;
  border-radius: 20px;
  margin: 20px auto;
}

.about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 220px;
  margin-bottom: 15px;
  border-radius: 25px;
  box-shadow: 0 6px 0 rgba(255, 150, 100, 0.3), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services,
.clients,
.gallery {
  text-align: center;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: none;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  background: white;
  box-shadow: 0 8px 0 rgba(255, 150, 0, 0.3), 0 12px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 0 rgba(255, 100, 255, 0.3), 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.highlight {
  background: linear-gradient(135deg, #ffe600 0%, #ffb84d 100%);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0 8px 0 rgba(255, 100, 0, 0.5), 0 12px 20px rgba(0, 0, 0, 0.15);
  min-height: 250px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 0 rgba(255, 100, 0, 0.6), 0 20px 30px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 0 rgba(150, 100, 255, 0.2), 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-grid img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.client-grid img:hover {
  transform: scale(1.1) rotate(-2deg);
}

.quotation form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 10px;
  border: none;
  border-radius: 15px;
  background: #f0f8ff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

button {
  padding: 12px 30px;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-family: 'Fredoka', sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 6px 0 rgba(0, 102, 255, 0.3), 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 rgba(0, 102, 255, 0.4), 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Cartoony styling */
h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff6b9d;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 800;
}

h3 {
  font-family: 'Baloo 2', sans-serif;
  color: #0066ff;
  font-size: 1.3em;
  margin: 15px 0;
  font-weight: 700;
}

.services, .about, .workshops, .gallery, .clients {
  background: white;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.slogan {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  border-radius: 20px;
}

.footer {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -10px 30px rgba(196, 69, 105, 0.2);
}
