body {
    font-family: sans-serif;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8B0000; /* Dark Red */
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
}

/* Specific positioning for each element */
.hero-section img[alt="Mount Fuji"] {
    width: 80%;
    max-width: 1000px;
    bottom: -10%;
    left: 20%;
    transform: translate(-50%, 0%);
}

.hero-section img[alt="Torii Gate"] {
    width: 20%;
    max-width: 200px;
    bottom: 5%;
    left: 25%;
    transform: translate(-50%, 0%);
}

.hero-section img[alt="Cherry Blossoms"] {
    width: 30%;
    max-width: 300px;
    top: 10%;
    left: 10%;
    transform: translate(-50%, 0%);
}

.hero-section img[alt="El Morro"] {
    width: 30%;
    max-width: 350px;
    bottom: 0%;
    right: 10%;
    left: auto;
    transform: translate(50%, 0%);
}

.hero-section img[alt="Puerto Rican Flag"] {
    width: 15%;
    max-width: 150px;
    top: 20%;
    right: 15%;
    left: auto;
    transform: translate(50%, 0%);
}

.hero-section img[alt="Cloud"] {
    width: 40%;
    max-width: 500px;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.hero-section img[alt="Food Truck"] {
    width: 60%;
    max-width: 700px;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 0%);
}
