body {
    margin: 0;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    background-color: #fffaf0;
    color: #333;
}

nav {
    background-color: #ff6f61;
    box-shadow: 0 4px 8px rgba(255, 71, 87, 0.4);
    padding: 15px 0;
    text-align: center;
    top: 0;
    z-index: 10;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: 
      background-color 0.3s ease, 
      transform 0.3s ease,
      box-shadow 0.3s ease;
    display: inline-block;
    user-select: none;
}

nav a:hover,
nav a:focus {
  background-color: #000;
  box-shadow: 0 8px 15px rgba(255, 111, 129, 0.5);
  transform: scale(1.1);
  outline: none;
}

.homeimage {
    position: relative;
    text-align: center;
}

.homeimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text {
    position: absolute;
    top: 20%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background: none;
    color: white;
    font-family: 'Brush Script MT', cursive, 'Segoe Script', Arial, sans-serif;
    font-size: 5rem;
    font-weight: normal;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 3px;
    text-align: center;
    user-select: none;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.75);
    white-space: nowrap;
    max-width: 1000px;
    width: 100%;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  nav a {
    margin: 0 12px;
    font-size: 1rem;
    padding: 6px 12px;
  }

  .image-text {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    white-space: normal; /* allow wrapping on small screens */
    max-width: 90%;
    top: 25%;
  }
}
