body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin: 0;
  background-color: #faf9fc;
  color: #333;
}

h2 {
  font-size: 28px;
  color: #7d3990;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: #333;
}

h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.header-logo img {
  height: 60px;
}

.header-right {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.header-right a {
  text-decoration: none;
  color: #9A53B2;
  font-weight: 600;
}

.header-right a:hover,
a.active {
  color: #7d3990;
  border-bottom: 2px solid #9A53B2;
}

.hotspot img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 70%;
  display: block;
}

.body-bar {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: #9A53B2;
}

.body-bar span {
  width: 120px;
  height: 30px;
  background-image: url("../images/lavanderFlower.png");
  background-size: contain;
  background-repeat: no-repeat;
}

main {
  max-width: 1100px; 
  margin: 60px auto; 
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.grid-column {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
  height: 200px;
}

.grid-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.grid-column h4 {
  color: #9A53B2;
  margin-bottom: 15px;
}

.divider {
  display: none; 
}

.contact-me {
  width: 100%;
  max-width: 600px; 
  text-align: center;
}

.contact-me h2 {
  margin-bottom: 40px;
  font-size: 28px;
  color: #9A53B2;
}

form {
  margin-left: -32px;
  width: 100%;
  max-width: 600px;        
  display: flex;
  flex-direction: column;
  text-align: left;
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

form span {
  color: red;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #555;
}

form input,
form textarea {
  display: block;
  width: 95%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #9A53B2;
  outline: none;
  box-shadow: 0 0 0 3px rgba(154, 83, 178, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #9A53B2;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #7d3990;
}

footer {
  background-color: white;
  margin-top: 60px;
}

.footer-divider {
  height: 6px;
  background-color: #9A53B2;
  border: none;
  margin: 0;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 40px 8vw;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.footer-column img {
  height: 50px;
}

footer p {
  font-size: 14px;
  margin: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #9A53B2;
  cursor: pointer;
}

@media (max-width: 790px) {
  form {
    padding: 30px 20px;
  }

  .hotspot img {
    height: 350px;
  }

  main {
    margin: 40px auto;
  }

  .grid-row {
    grid-template-columns: 1fr;
  }

  .grid-column {
    height: 150px;
  }
  form {
    width: 100%;
  }
  
    h2 {
    font-size: 22px;
  }

  h4 {
    font-size: 16px;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .header-right {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
  }

  .header-right.active {
    display: flex;
    margin-top: -16px;
    max-height: 300px;
  }

  .footer-row {
    grid-template-columns: 1fr; 
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-column {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-column img {
    height: 45px;
  }

  footer p {
    font-size: 15px;
  }

  .footer-column a {
    text-decoration: none;
  }

  .body-bar span {
    height: 0;
    width: 0;
  }
}