@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'aerial-serif', sans-serif;
    margin: 0;
    line-height: 1;
    background-image: url('https://getsummon.com/wp-content/uploads/2023/12/what-is-valet-parking-at-a-hotel.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    padding: 0;
    flex-direction: column;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    color: powderblue;
    padding: 10px;
    font-family: 'Lobster', cursive;
    justify-content: space-between;
    display: flex;
}

header h1 {
    color: paleturquoise;
    font-size: 40px;
    font-weight: bolder;
    font-family: 'Nosifer', sans-serif;
    text-shadow: 0 0 5px powderblue;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    margin-top: auto;
}

header h1 a {
    text-decoration: none;
    color: paleturquoise;
}

header h1 a:hover {
    color: powderblue;
    text-shadow: 0 0 30px black, 0 0 5px rgba(183, 75, 75, 0.7);
}

nav {
    margin-top: auto;
}

nav a {
    color: whitesmoke;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

nav a:hover, .active {
    color: darkcyan;
    text-shadow: 0 0 2px white;
}

main {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.valet-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 100px;
}

.person {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.person:hover {
    transform: scale(1.05);
}

.person img {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.person h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.person p {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 1px;
    font-size: 0.9rem;
}