*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background-color: black;
    color: #B41BA3;
}
.header{
    background-color:  #B41BA3;
    color: black;
    padding: 1rem;
    text-align: center;
    height: 100px;
}
header h1{
    font-size: 1.8rem;
}
.content{
    background-color: #66284a;
    color: black;
    display: flex;
    justify-content:center;
    text-align: center;
    align-items: center;
    height: 30px;
}
nav{
    display: flex;
    gap: 1rem;
}
nav a{
    color: black;
    text-decoration: none;
    font-weight: bold;
}
.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: black;
}
.menu img{
    flex-basis: 300px;
    max-width: 100%;
    border-radius: 10px;
}
.menu-image:hover{
    transform: translate(-1%);
}
.hero-text{
    flex-basis: 300px;
    padding: 1rem;
    text-align: center;
}
.hero{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background-color: #66284a;
    color: black;
}
.menu-item{
    flex: 1 1 250px;
    background-color: black;
    border: 1px solid  #66284a;
    border-radius: 10px;
    color: #B41BA3;
    padding: 1rem;
    text-align: center;

}
.menu-item:hover{
    transform: translateY(-5px);
}
.hero-text h3{
    margin-bottom: 0.5rem;
}
.menu-item p{
    font-size: 0.9rem;
}
.site-footer {
    background-color:  black;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    color:#B41BA3;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color:#B41BA3;
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-about p,
.footer-contact p,
.footer-links ul {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.footer-links nav {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin: 8px 0;
  }
  
  .footer-links a {
    text-decoration: none;
    color:#B41BA3;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #000;
  }
  .footer-contact a {
    color:#66284a;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: #000;
  }
  
  
  